/* =========================================
   CORRECCIONES ESTÉTICAS
   ========================================= */

/* ===== FIX 1: OPCIONES DE SELECT EN ADMIN (EN BLANCO) ===== */

/* Todos los select option en el admin */
select option {
    background-color: #1a1a1a !important;
    color: #ffffff !important;
    padding: 10px !important;
}

/* Cuando está seleccionado */
select option:checked {
    background-color: #00ff9c !important;
    color: #000000 !important;
}

/* Al hacer hover */
select option:hover {
    background-color: rgba(0, 255, 156, 0.2) !important;
    color: #ffffff !important;
}

/* Para asegurar que funcione en todos los navegadores */
.filter-group select option,
.form-group select option {
    background-color: #1a1a1a !important;
    color: #ffffff !important;
}


