/* Dropdowns */
.dropdown-item.active,
.dropdown-item:active {
    background-color: var(--bs-secondary) !important;
    /* Menta Dental */
    color: #ffffff !important;
}

.dropdown-menu {
    border-color: rgba(85, 197, 185, 0.2);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.dropdown-item:hover,
.dropdown-item:focus {
    background-color: rgba(85, 197, 185, 0.15) !important;
    /* Menta muy suave pero visible */
    color: var(--bs-primary) !important;
    /* Azul Oscuro - Asegurar legibilidad */
}

/* Caso especial: Hover sobre el elemento que YA está activo */
.dropdown-item.active:hover,
.dropdown-item:active:hover {
    background-color: #40a096 !important;
    /* Menta un poco más oscuro */
    color: #ffffff !important;
}