/* GLOBAL SELECT & DROPDOWN STYLES
   Ensures all dropdowns are highly readable in dark mode. */

select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%233b82f6'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px !important;
}

select, option {
    font-family: inherit;
    font-size: 14px;
    color: #e6f0ff !important;
    background-color: #111827 !important; /* Solid dark background for readability */
}

/* Specific styling for select elements */
select {
    padding: 10px 14px;
    border-radius: 12px;
    border: 1px solid rgba(59,130,246,0.3);
    transition: all 0.25s ease;
    cursor: pointer;
}

select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59,130,246,0.25);
    background-color: #1f2937 !important;
}

/* Ensure options are readable on all browsers */
option {
    padding: 10px;
    background: #111827;
}

option:checked {
    background-color: #3b82f6 !important;
    color: #ffffff !important;
}
