.header-bar{
  background-color: black;
}

.white-text{
  color: white;
}

.question-text-bold{
  font-size: 1.1rem;
  font-weight: 600;
}

.question-text{
  font-size: 1.1rem;
  font-weight: 500;
}

.answer-text{
  font-size: 1.1rem;
  font-weight: 400;
}

/* The wrapper starts closed */
.slide-down-wrapper {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
}

/* The open state */
.slide-down-visible {
  max-height: 120px; /* Adjust this value based on your input/label height */
  opacity: 1;
}

/* Optional: styling for the error message */
.error-msg {
  color: #dc2626; /* Red */
  font-size: 0.875rem;
  display: none; /* Hidden by default */
  margin-top: 0.25rem;
}