/*
 * 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.
 */

@font-face {
  font-family: 'Magneto';
  src: url("/assets/Magneto_Bold.woff2") format('woff2'),
       url("/assets/Magneto_Bold.woff") format('woff'),
       url("/assets/Magneto_Bold.ttf") format('truetype'),
       url("/assets/Magneto_Bold.eot");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

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