/* =============================================================================
   FORM COMPONENTS
   ============================================================================= */

.select {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #2E7D32;
    padding: 0.5rem;
    border-radius: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    min-height: 44px;
    font-weight: 500;
    font-family: 'Noto Color Emoji', 'Apple Color Emoji', 'Segoe UI Emoji', 
                 -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.select option {
    background: white !important;
    color: #2E7D32 !important;
    font-family: inherit;
    font-weight: 500;
}

.select__option {
    background: white !important;
    color: #2E7D32 !important;
    font-family: inherit;
    font-weight: 500;
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .select {
        background: rgba(255, 255, 255, 0.2);
        border-color: rgba(255, 255, 255, 0.3);
        color: white;
    }
    
    .select option {
        background: #2E7D32 !important;
        color: white !important;
    }
    
    .select__option {
        background: #2E7D32 !important;
        color: white !important;
    }
}

.input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s ease;
}

.input:focus {
    outline: none;
    border-color: #2E7D32;
}