/* -------------------------- */
/* TAB SWITCHING */
/* -------------------------- */
.tab-active {
  border-bottom: 2px solid #4285f4; /* google-blue */
  font-weight: 600;
  color: #4285f4;
}
.tab-button {
  transition: border-color 0.15s ease-in-out, color 0.15s ease-in-out;
}

/* -------------------------- */
/* CUSTOM SELECT STYLE */
/* -------------------------- */
select {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234b5563' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg>%23374151");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 30px;
  appearance: none;
}

.google-input:focus {
  border-color: #4285f4;
  box-shadow: 0 0 0 1px #4285f4;
}

/* -------------------------- */
/* FAQ TOGGLE */
/* -------------------------- */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out;
}

.toggle-icon.rotate-45 {
  transform: rotate(45deg);
}

/* -------------------------- */
/* INFO BOX STYLE */
/* -------------------------- */
.info-box::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 4px dashed var(--decorative-blue);
  border-radius: 12px;
  pointer-events: none;
}
