body {
  font-family: sans-serif;
  background-color: #f8f9fa;
}

h1 {
  color: #343a40;
  margin-bottom: 30px;
  margin-top: 30px;
}

h2 {
  color: #495057;
  margin-top: 20px;
}

.code-container {
  background-color: #f1f3f5;
  border: 1px solid #ced4da;
  border-radius: 5px;
  padding: 20px;
  margin-top: 10px;
  margin-bottom: 20px;
  overflow: auto;
  font-family: "Courier New", monospace;
  font-size: 14px;
  position: relative;
}

.code-line {
  position: relative;
  transition: all 0.3s ease-in-out;
}

.form-check {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.form-check-input {
  margin-right: 0.5em;
  margin-top: 0;
}

.form-check-label {
  font-weight: 500;
  color: #495057;
  cursor: pointer;
  padding: 0.5em 0;
}

.features-list {
  list-style: none;
  padding-left: 0;
}

.features-list li {
  margin-bottom: 10px;
  align-items: center;
  cursor: pointer;
}

pre {
  margin: 0;
}

code {
  white-space: pre;
  display: block;
  transition: all 0.5s;
}

.highlighted-code {
  background-color: rgb(150, 197, 255);
  transition: background-color 0.3s ease-in-out;
}

/* Styles for enter/leave transitions */
.code-line-enter-active,
.code-line-leave-active {
  transition: all 0.5s;
}

.code-line-enter {
  opacity: 0;
  transform: translateX(-10px);
}

.code-line-leave-to {
  opacity: 0;
  transform: translateX(-10px);
}
