﻿.btn-logout {
    background: linear-gradient(135deg, #dc2626, #b91c1c); /* rojo degradado */
    color: #fff;
    font-weight: bold;
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

    .btn-logout:hover {
        background: linear-gradient(135deg, #ef4444, #dc2626); /* rojo más vivo */
        transform: translateY(-2px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
    }

    .btn-logout:active {
        transform: translateY(0);
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
    }

.navBarModuloActivo {
    background-color: rgb(255, 239, 153);
    color: black !important;
    font-weight: bold;
    padding: 7px 15px;
    border-radius: 12px;
}

#btnScrollTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    font-size: 20px;
    border: none;    
    cursor: pointer;
    color: #000;
    z-index:10000 !important;
}

    #btnScrollTop.show {
        display: block;
    }