/* Shared dark-theme form elements */

.form-select-dark {
    padding: 8px 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.95rem;
    transition: all 0.3s;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
}

.form-select-dark:focus {
    outline: none;
    border-color: rgba(102, 126, 234, 0.5);
    background: rgba(255, 255, 255, 0.15);
}

.form-select-dark option {
    background: #2d2d3d;
    color: white;
}
