.modal-content { background: #fff !important; color: #222 !important; }
body { 
    background: linear-gradient(135deg, #fff5f5 0%, #ffe6e6 100%); 
    background-attachment: fixed;
    color: #b71c1c; 
}
.navbar { 
    background: linear-gradient(135deg, #b71c1c 0%, #8b1616 100%);
    color: #fff;
    box-shadow: 0 4px 12px rgba(183, 28, 28, 0.2);
    padding: 1rem 2rem !important;
    transition: all 0.3s ease;
}
.navbar:hover { box-shadow: 0 6px 16px rgba(183, 28, 28, 0.3); }
.navbar .form-select { 
    border-radius: 20px; 
    padding: 8px 16px;
    background-color: #8b1616;
    color: #fff;
    border: 1px solid #fff;
    transition: all 0.3s ease;
}
.navbar .form-select:hover { background-color: #6b1010; border-color: #fff; }
.modal-title-theme {
    color: #222 !important;
    background: #b71c1c !important;
    font-weight: bold;
    padding: 8px 20px;
    border-radius: 20px;
    display: inline-block;
    text-shadow: none !important;
    transition: all 0.3s ease;
}
.modal-title-theme:hover { background: #8b1616 !important; }

/* Estilos Responsivos para Hamburguesa y Logotipo */
@media (max-width: 767px) {
    img[alt="Logo"] {
        height: 90px !important;
    }
}

@media (max-width: 479px) {
    img[alt="Logo"] {
        height: 80px !important;
    }
}

@media (max-width: 320px) {
    img[alt="Logo"] {
        height: 70px !important;
    }
}

/* Estilos del Botón Hamburguesa Bootstrap - SIEMPRE VISIBLE */
.navbar-toggler {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    transition: all 0.3s ease;
    visibility: visible !important;
}

.navbar-toggler:focus {
    box-shadow: none !important;
    outline: none !important;
}

/* Forzar que sea visible en TODAS las resoluciones, incluso desktop */
@media (min-width: 992px) {
    .navbar-toggler {
        display: flex !important;
        visibility: visible !important;
    }
}
