/* Removes the up/down arrows from number input fields across different browsers */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Default style for small screens (mobile-first approach) */
.header-logo {
  height: 70px;
}

/* Media query for medium screens and up (e.g., tablets, desktops) */
/* Bootstrap's 'md' breakpoint is 768px. This targets screens 768px wide and larger. */
@media (min-width: 768px) {
  .header-logo {
    height: 125px;
  }
}

/* This targets dcc.Input specifically when it fails validation */
.dash-input:invalid {
    outline: 10px solid #EEA320 !important;
    border-color: #EEA320 !important;
    box-shadow: 10px 10px 10px #EEA320;
}

/* Optional: Style for when the input is valid */
.dash-input:invalid {
    border: 2px solid none !important; /* Bootstrap Red */
    outline: none !important;
    box-shadow: none !important;
}

/* This targets the internal control area specifically */
.mandatory-dropdown .Select-control {
    border: 3px solid #EEA320 !important;
}

/* This is for your standard state */
.valid-dropdown .Select-control {
    border: 1px solid #ffffff !important;
}

input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none; /* For Safari support */
    -moz-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border: 1px solid #ffffff;
    border-radius: 1px;
    cursor: pointer;
    outline: none;
    
    /* Center the child (the checkmark) */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    
    vertical-align: middle;
    transition: all 0.2s ease;
}

input[type="checkbox"]:checked {
    background-color: #65BBA9;
    border-color: #65BBA9;
}

input[type="checkbox"]:checked::after {
    /* The \FE0E forces the 'text' version of the glyph */
    content: '\2714\FE0E'; 
    color: white !important;
    font-size: 12px;
    font-weight: bold;
}