/* === Estructura general === */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    background-color: #EAEAEA;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* === Contenedor principal del layout === */
#layoutSidenav {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* El contenido crece y empuja el footer hacia abajo */
#layoutSidenav_content {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
}

/* === Estilo del footer === */
footer {
    width: 100%;
    background-color: #ffffff;
    border-top: 1px solid #dedede;
    margin-top: auto;
    padding: 12px 0;
    text-align: center;
    position: relative;
    z-index: 10;
}

footer .text-muted {
    color: #6c757d;
}

footer a {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.2s ease;
}

footer a:hover {
    color: #007bff;
}

/* === Ajuste en pantallas pequeñas === */
@media (max-width: 576px) {
    footer .text-muted {
        font-size: 13px;
    }

    footer a {
        display: block;
        margin-top: 6px;
    }
}

/* === Estilos originales === */
.contenedor {
    border: 1px solid #dedede;
    background-color: #fff;
}

.float-right {
    float: right;
}

.espacio-btn {
    margin-right: 5px;
}

.campo-obligatorio {
    color: #ff0000 !important;
}

#nueva_factura legend {
    font-size: inherit;
    line-height: 20px;
    font-weight: 350;
    color: #555;
}

main > .container {
    padding: 65px 0 15px;
}

.navbar-nav .nav-link#Empresa,
.navbar-nav .nav-link#userDropdown {
    max-width: 120px;          /* límite para que NO empuje la barra lateral */
    white-space: nowrap;       /* no se va a saltar de línea */
    overflow: hidden;          /* oculta lo que se pase */
    text-overflow: ellipsis;   /* agrega los “…” */
}

