/*
 * 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;
}

/* Date input styling to match other input fields */
input[type="date"] {
  background-color: rgb(30, 41, 59); /* slate-800 */
  color: white;
  color-scheme: dark;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  filter: brightness(0) invert(1);
  cursor: pointer;
}

input[type="date"]:focus {
  outline: 2px solid rgb(37, 99, 235); /* blue-600 */
}

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

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