/* 
   GERMAN RACERS — GLOBAL FORM STYLES (Epic Premium)
   Behebt die fehlerhafte Darstellung von Dropdowns in dunklen Themes.
*/

input, select, textarea {
    background-color: #1a1a1a !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 4px !important;
    color: #ffffff !important;
    font-family: 'Rajdhani', 'Inter', sans-serif !important;
    font-size: 15px !important;
    padding: 10px 14px !important;
    transition: all 0.2s ease !important;
    outline: none !important;
}

input:focus, select:focus, textarea:focus {
    border-color: var(--primary, #e8232a) !important;
    box-shadow: 0 0 12px rgba(232, 35, 42, 0.2) !important;
    background-color: #222 !important;
}

/* Chrome, Safari, Edge - Option styling is limited, but this helps */
option {
    background-color: #1a1a1a !important;
    color: #ffffff !important;
    padding: 12px !important;
}

/* Firefox specific */
@-moz-document url-prefix() {
    select {
        background-color: #1a1a1a !important;
        color: #ffffff !important;
    }
}

/* Placeholder styling */
::placeholder {
    color: rgba(255, 255, 255, 0.3) !important;
    opacity: 1;
}
