/* FOOTER ADMINISTRATIVO */
.admin-footer {
    padding: 15px 30px;
    background: #373435;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.admin-footer-content {
    display: flex;
    flex-direction: row;
    /* Forzar renglón único */
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.admin-footer-dev a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.admin-footer-dev a:hover {
    text-decoration: underline;
}

/* BOTON BACK TO TOP */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background-color: #2b75b2;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 3000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: #26167D;
    transform: translateY(-5px);
}