/* Reset mínimo */
html, body {
    height: 100%;
    margin: 0;
}

body.site {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header y footer mantienen su altura natural */
.site-header,
.site-footer {
    flex-shrink: 0;
}

/* Contenedor principal */
.main-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 20px;
    overflow-y: auto;
    background-color: #e6f0ff;
}



/* Head */
.main-header {
    background-color: #0f2a44;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
}

.brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.brand-logo {
    height: 60px; 
    margin-right: 20px;
}

.brand-text {
    color: white !important;
    margin: 0;
}

.brand-name {
    font-size: 30px;
    font-weight: 700;
}

.brand-subtitle {
    font-size: 18px;
    opacity: 0.9;
}

.client-badge {
    color: white;
    font-size: 16px;
}

.client-logo {
    height: 45px; 
}

.user-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-cerrar-sesion {
    background-color: #005599;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
}

.home-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    text-decoration: none;
}





/* Footer */
.footer {
    margin-top: auto;
    width: 100%;
    background-color: #e8e9ea;
    border-top: 1px solid #e0e0e0;
    padding: 12px 20px;
    text-align: center;
    font-size: 0.85rem;
    color: #6c757d; /* text-muted */
}

.footer small {
    display: block;
    line-height: 1.4;
}

.footer-auth {
    /* background-color: transparent; */
    border-top: none;
    padding-top: 20px;
    color: #6c757d;
}

.footer a {
    color: #0d6efd;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}




