/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */



select {
  background-color: rgb(15, 23, 42); /* slate-900 */
  color: white;
}

select option {
  background-color: rgb(30, 41, 59); /* slate-800 */
  color: white;
}

/* Hide the real (ISO) input that flatpickr keeps for form submission */
input.flatpickr-input:not(.flatpickr-mobile)[readonly] {
  display: none !important;
}

/* Flatpickr selected day – teal accent matching the app */
.flatpickr-day.selected,
.flatpickr-day.selected:hover,
.flatpickr-day.selected:focus {
  background: rgb(13, 148, 136) !important;
  border-color: rgb(13, 148, 136) !important;
  color: white !important;
}
.flatpickr-day.today {
  border-color: rgb(20, 184, 166) !important;
}

.squadlink-logo {
  font-family: 'Magneto', sans-serif;
  font-weight: bold;
}

@media (max-width: 639px) {
  .mobile-xs {
    font-size: 10px;
    line-height: 1.4;
  }
}
