/* Hide number input spinners */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type="number"] {
  -moz-appearance: textfield;
}

/* Flatpickr customization */
.flatpickr-calendar {
  background: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  font-family: inherit;
}

.flatpickr-day.selected {
  background: #4f46e5;
  border-color: #4f46e5;
}

.flatpickr-day.selected:hover {
  background: #4338ca;
  border-color: #4338ca;
}

.flatpickr-day:hover {
  background: #e0e7ff;
}

.flatpickr-months .flatpickr-month {
  background: #eef2ff;
}

.flatpickr-current-month {
  font-size: 1.1em;
  padding: 0.5em 0;
}

.flatpickr-monthDropdown-months {
  background: #eef2ff;
}

/* FAQ Accordion */
.faq-item {
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  margin-bottom: 0.5rem;
}

.faq-question {
  width: 100%;
  padding: 1rem;
  text-align: left;
  font-weight: 500;
  color: #111827;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  padding: 0 1rem 1rem;
  color: #4b5563;
  display: none;
}

.faq-answer.active {
  display: block;
}