﻿* {
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

:root {
    line-height: 1.5;
    font-weight: 400;
    margin: 0;
    color: rgba(0, 0, 0, 0.87);
    background-color: white;
    font-synthesis: none;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

input:focus {
    outline: none;
    box-shadow: 0 0 8px 3px rgba(100, 100, 100, 0.6);
}

select:focus {
    outline: none;
    box-shadow: 0 0 8px 3px rgba(100, 100, 100, 0.6);
}

textarea:focus {
    outline: none;
    box-shadow: 0 0 8px 3px rgba(100, 100, 100, 0.6);
}


/*html {
    scrollbar-gutter: stable;
    overflow-y: scroll;*/ /* asegura que el espacio esté reservado */
/*background-color: transparent;*/ /* igual al fondo de tu app */
/*}

html, body {
    margin: 0;
    padding: 16px;
    width: 100%;
    box-sizing: border-box;
}*/

html, body {
    height: 100%;
    margin: 0;
}

button {
    cursor: pointer;
}

.container {
    /*display: flex;*/
    min-height: 100vh;
}

.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 250px;
    height: 100vh;
    color: white;
    box-sizing: border-box;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-right: 25px;
    box-shadow: 2px 0 5px rgba(0,0,0,0.1);
    background: linear-gradient(to bottom, #bedef4, #5faef4, #0e85f5);
    transition: width 0.3s ease;
}

    .sidebar.contraido {
        width: 50px;
    }

        .sidebar.contraido button span {
            display: none;
        }


.content {
    flex: 1;
    padding: 2rem;
    box-sizing: border-box;
}

.aside-selected {
    display: flex;
    flex-direction: row;
    align-items: center;
    /*padding: 12px;*/
    padding-left: 12px;
    padding-right: 12px;
    height: 40px;
    box-sizing: content-box;
    background-color: #d2e8f9;
    border-right: 3px solid orange;
}

    .aside-selected span {
        color: black;
    }

    .aside-selected i {
        color: black;
    }


.aside-not-selected {
    display: flex;
    flex-direction: row;
    align-items: center;
    /*padding: 12px;*/
    padding-left: 12px;
    padding-right: 12px;
    height: 40px;
    box-sizing: content-box;
}

    .aside-not-selected span {
        color: white;
    }

    .aside-not-selected i {
        color: white;
    }

    .aside-not-selected.span {
        color: white;
    }

#body-content {
}

#mensaje-caducidad {
    bottom: 4px;
    box-shadow: 0 -10px 19px rgba(8,15,30,0.08);
    height: 80px;
    left: 54px;
    width: calc(100% - 54px);
}

.tabla-resultados {
    display: flex;
    flex-direction: column;
    width: 100%;
    font-family: sans-serif;
}

.header-resultados {
    display: flex;
    background-color: transparent;
    color: #333;
    font-weight: 600;
    padding: 10px;
}

.row-resultados {
    display: flex;
    border: 1px solid #f5f5f5;
    border-radius: 8px;
    padding: 10px;
    margin: 10px 0;
    box-shadow: 0px 0px 5px -1px rgb(0 0 0 / 38%);
    background-color: white;
}

.cell-resultados {
    flex: 1 1 50px;
    min-width: 50px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 5px;
    text-align: center;
    font-size: 14px;
}

.cell-resultados-expanded {
    white-space: normal;
    text-overflow: unset;
    word-break: break-word;
}

.paginacion-actual {
    position: relative;
    display: inline-block;
}

    .paginacion-actual::after {
        content: "";
        position: absolute;
        bottom: -2px;
        left: -8px;
        width: calc(100% + 16px);
        height: 2px;
        background-color: #2b93f4;
    }


.boton {
    padding: 8px;
    border-radius: 8px;
    border: none;
}

.boton-fichaje-habilitado {
    background-color: #c1dff3;
}

.boton-fichaje-deshabilitado {
    background-color: #f5f5f5;
    cursor: initial;
}

.popup-error {
    background-color: #f44336; /* Rojo */
}

.popup-exito {
    background-color: #46ed89; /* Azul */
}

.popup-info-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 100005;
    background: rgba(0, 0, 0, 0.5);
}

.popup {
    max-height: 80%;
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    width: 90%;
    pointer-events: auto;
    animation: fadeIn 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
    text-align: center;
}

.div-hijo-conteo {
    padding: 8px;
    border-radius: 8px;
    text-align: center;
}

    .div-hijo-conteo span {
        display: block;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

.campo-filtro {
    border-radius: 8px;
    padding: 8px;
    background-color: #f5f5f5;
    border-style: none;
    box-shadow: 0px 0px 5px -1px rgb(0 0 0 / 38%);
}

.campo-dato {
    border-radius: 8px;
    padding: 8px;
    background-color: white;
    border-style: none;
    box-shadow: 0px 0px 5px -1px rgb(0 0 0 / 38%);
}


/* calendario */
.calendar-wrap {
    max-width: 1100px;
    margin: 0 auto;
    background: white;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(8,15,30,0.08);
    overflow: hidden
}

.calendar-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 18px 20px;
}

    .calendar-header .calendar-controls {
        display: flex;
        gap: 8px;
        align-items: center
    }

button.calendar-ghost {
    background: transparent;
    color: #0b74ff;
    border: 1px solid rgba(11,116,255,0.12)
}

.calendar-title {
    font-size: 1.2rem;
    font-weight: 400;
    width: 200px;
}

.calendar-body-grid {
    display: grid;
    grid-template-columns: 1fr 240px;
    min-height: 520px;
}

.calendar-body-flex {
    display: flex;
}

.calendar-sidebar {
    padding: 16px;
    border-right: 1px solid #f1f5f9;
    background: #fbfdff
}

.calendar-event-list {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7,1fr);
    gap: 6px;
    margin-bottom: 8px
}

.calendar-weekday {
    padding: 8px;
    text-align: center;
    font-size: 0.85rem;
    color: #64748b
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7,1fr);
}

.calendar-day {
    border-color: #80808042;
    border-style: solid;
    min-height: 110px;
    background: #fff;
    padding: 8px;
    border-width: 1px;
    position: relative;
    overflow: hidden;
    cursor: pointer
}

    .calendar-day.calendar-dim {
        opacity: 0.45
    }

    .calendar-day calendar.date-num {
        font-weight: 600
    }

.calendar-day {
    /*margin-top: 6px;*/
    display: flex;
    flex-direction: column;
    gap: 6px
}

.calendar-events {
    margin-top: 6px;
    display: flex;
    flex-direction: column;
    gap: 6px
}

.mini-calendar-day {
    min-height: 60px;
    padding: 8px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.calendar-evt {
    padding: 6px 8px;
    border-radius: 8px;
    color: black;
    font-size: 0.82rem;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.calendar-swatch {
    width: 12px;
    height: 12px;
    border-radius: 3px
}

.calendar-tag {
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 8px;
    background: #e2e8f0;
    color: #334155;
    margin-left: 4px
}

/* Hoy */
.calendar-today {
    background-color: #c1dff3;
    color: #0070ff;
}

.mini-calendario {
    flex: 0 0 calc(50% - 16px);
    box-sizing: border-box;
    background-color: #f4f4f4;
    padding: 16px;
    border-radius: 8px;
}

.calendario-semanal {
    display: grid;
    gap: 8px;
    text-align: center;
    grid-template-columns: 200px repeat(7, 1fr);
}

.hrAusencias {
    border: none;
    height: 2px;
    background-color: black;
    margin: 8px 0;
}

.botonAside {
    background-color: transparent;
    text-align: left;
    border-style: none;
    /*padding-left: 0px;*/
    height: 100%;
    width: 100%;
}

.panel-resumen-admin {
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    /*flex-wrap: wrap;*/
    background-color: #f5f5f5;
    box-sizing: border-box;
    padding: 16px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.tab-activa {
    background-color: white;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    cursor: pointer;
    padding: 12px 20px;
    border: none;
}

.tab-inactiva {
    background-color: #f5f5f5;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    color: grey;
    cursor: pointer;
    padding: 12px 20px;
    border: none;
}

.tab-nivel-dos {
    margin: 8px;
    display: flex;
    flex-direction: row;
    width: 100%;
    position: relative;
}

    .tab-nivel-dos::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        height: 2px;
        width: 100%;
        background-color: #ccc;
        z-index: 0;
    }

.tab-nivel-dos-activa {
    background-color: white;
    border: none;
    border-bottom: 2px solid black;
    padding: 8px;
    z-index: 1;
}

.tab-nivel-dos-inactiva {
    background-color: white;
    border: none;
    border-bottom: 2px solid grey;
    color: grey;
    padding: 8px;
    z-index: 1;
}

.checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

input[type="checkbox"]:disabled + .custom-box,
input[type="checkbox"]:disabled + .custom-box + .checkbox-text {
    opacity: 0.4;
    cursor: not-allowed;
}


.checkbox input[type="checkbox"] {
    display: none; /* Ocultamos el checkbox real */
}

    .checkbox input[type="checkbox"]:checked + .custom-box::after {
        content: "";
        position: absolute;
        top: 1px;
        left: 6px;
        /* display: table; */
        width: 4px;
        height: 9px;
        border: 2px solid white;
        border-top-width: 0;
        border-left-width: 0;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
    }


.custom-box {
    width: 20px;
    height: 20px;
    border: 1px solid #003366;
    border-radius: 3px;
    position: relative;
    background-color: white;
    transition: background 0.2s;
}

.checkbox input[type="checkbox"]:checked + .custom-box {
    background-color: #003366; /* Fondo cuando está marcado */
}

.border-icono {
    border: 1px solid grey;
}

.fle-50-per {
    flex: 0 0 calc(50% - 16px);
}

.celda-seleccionada {
    background-color: #bcdce1;
}

.ruta-seccion-activa {
    color: black;
    cursor: default;
}

.ruta-seccion-inactiva {
    color: grey;
    cursor: pointer;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .sidebar {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 60px;
        padding: 0;
        background: #0e85f5;
    }

        .sidebar.contraido {
            width: 100%;
        }

            .sidebar.contraido button span {
                display: block;
            }

    #mensaje-caducidad {
        bottom: 4px;
        box-shadow: 0 -10px 19px rgba(8,15,30,0.08);
        height: 60px;
        left: 0px;
        width: 100%;
    }

    #header-aside {
        display: none;
    }

    #body-aside {
        padding-top: 0px;
        flex: 1;
        display: flex;
        flex-direction: row;
    }

    #footer-aside {
        display: none;
    }

    .botonAside {
        text-align: center;
    }

    .calendar-sidebar {
        display: none;
    }

    .calendar-body-grid {
        display: flex;
    }

    .paneles-resumen-administracion {
        width: 100%;
    }

    .fle-50-per {
        flex: 0 0 calc(100% - 16px);
    }
}

/* Responsive estilo "card" */
@media (max-width: 600px) {
    .header-resultados {
        display: none;
    }

    .row-resultados {
        flex-direction: column;
        border: 1px solid #ccc;
        margin-bottom: 10px;
        background-color: #f9f9f9;
        border-radius: 8px;
        overflow: hidden;
    }

    .cell-resultados {
        display: flex;
        flex-direction: column;
        /*padding: 0;*/
        padding: 6px 10px;
        border-bottom: 1px solid #eee;
        flex: none;
        min-height: 70px;
    }

        .cell-resultados::before {
            content: attr(data-label);
            /*background-color: #0e85f5;*/
            background-color: white;
            color: black;
            /*color: white;*/
            padding: 6px 10px;
            font-weight: bold;
            font-size: 14px;
        }

    /*.cell-resultados {
        padding: 6px 10px;
    }*/

    .mini-calendario {
        padding: 0px;
        flex: 0 0 100%;
    }

    .calendario-semanal {
        grid-template-columns: 100px repeat(7, 1fr);
    }

    .calendar-day {
        min-height: 60px;
    }

    #panel-izquierdo-login {
        display: none;
    }
}

/* Clases individuales */
.ali-ite-cen {
    align-items: center;
}

.bac-fff {
    background: #fff;
}

.bac-tra {
    background: transparent;
}

.bac-col-005b04 {
    background-color: #005b04;
}

.bac-col-005b0466 {
    background-color: #005b0466;
}

.bac-col-005b0433 {
    background-color: #005b0433;
}

.bac-col-289cd8 {
    background-color: #289cd8;
}

.bac-col-979797 {
    background-color: #979797;
}

.bac-col-c1dff3 {
    background-color: #c1dff3;
}

.bac-col-d2e8f9 {
    background-color: #d2e8f9;
}

.bac-col-d3d3d3 {
    background-color: #d3d3d3;
}

.bac-col-efeff0 {
    background-color: #efeff0;
}

.bac-col-fce0ba {
    background-color: #fce0ba;
}

.bac-col-f5f5f5 {
    background-color: #f5f5f5;
}

.bac-col-ff1100 {
    background-color: #ff1100;
}

.bac-col-ff110066 {
    background-color: #ff110066;
}

.bac-col-ffc107 {
    background-color: #ffc107;
}

.bac-col-ffc10766 {
    background-color: #ffc10766;
}

.bac-col-ora {
    background-color: orange;
}

.bac-col-tra {
    background-color: transparent;
}

.bac-col-whi {
    background-color: white;
}

.bor-bot-1-sol-gre {
    border-bottom: 1px solid grey;
}

.bor-lef-1-sol-gre {
    border-left: 1px solid grey;
}

.bor-bot-lef-rad-32 {
    border-bottom-left-radius: 32px;
}

.bor-bot-lef-rad-8 {
    border-bottom-left-radius: 8px;
}

.bor-bot-rig-rad-8 {
    border-bottom-right-radius: 8px;
}

.bor-non {
    border: none;
}

.bor-rad-50 {
    border-radius: 50px;
}

.bor-rad-20 {
    border-radius: 20px;
}

.bor-rad-16 {
    border-radius: 16px;
}

.bor-rad-12 {
    border-radius: 12px;
}

.bor-rad-8 {
    border-radius: 8px;
}

.bor-rad-6 {
    border-radius: 6px;
}

.bor-rad-50-per {
    border-radius: 50%;
}

.bor-sty-non {
    border-style: none;
}

.bor-sty-sol {
    border-style: solid;
}

.bor-top-lef-rad-32 {
    border-top-left-radius: 32px;
}

.bor-top-lef-rad-24 {
    border-top-left-radius: 24px;
}

.bor-top-rig-rad-24 {
    border-top-right-radius: 24px;
}

.bor-wid-2 {
    border-width: 2px;
}

.bot-8 {
    bottom: 8px;
}

.bot-4 {
    bottom: 4px;
}

.box-siz-con-box {
    box-sizing: content-box;
}

.col-bla {
    color: black;
}

.col-gre {
    color: green;
}

.col-red {
    color: red;
}

.col-whi {
    color: white;
}

.col-a6a29c {
    color: #a6a29c;
}

.col-a7a7a7 {
    color: #a7a7a7;
}

.col-040d37 {
    color: #040d37;
}

.col-2b93f4 {
    color: #2b93f4;
}

.col-289cd8 {
    color: #289cd8;
}

.col-dar-gre {
    color: darkgrey;
}

.cur-poi {
    cursor: pointer;
}

.cur-def {
    cursor: default;
}

.dis-fle {
    display: flex;
}

.dis-gri {
    display: grid;
}

.dis-non {
    display: none;
}

.fle-dir-col {
    flex-direction: column;
}

.fle-dir-row {
    flex-direction: row;
}

.fle-wra-wra {
    flex-wrap: wrap;
}

.fle-3 {
    flex: 3;
}

.fle-2 {
    flex: 2;
}

.fle-1 {
    flex: 1;
}

.fon-siz-50 {
    font-size: 50px;
}

.fon-siz-30 {
    font-size: 30px;
}

.fon-siz-24 {
    font-size: 24px;
}

.fon-siz-20 {
    font-size: 20px;
}

.fon-siz-18 {
    font-size: 18px;
}

.fon-siz-16 {
    font-size: 16px;
}

.fon-siz-14 {
    font-size: 14px;
}

.fon-siz-13 {
    font-size: 13px;
}

.fon-siz-12 {
    font-size: 12px;
}

.fon-siz-10 {
    font-size: 10px;
}

.fon-wei-800 {
    font-weight: 800;
}

.fon-wei-700 {
    font-weight: 700;
}

.fon-wei-600 {
    font-weight: 600;
}

.fon-wei-500 {
    font-weight: 500;
}

.fon-wei-400 {
    font-weight: 400;
}

.gap-32 {
    gap: 32px;
}

.gap-16 {
    gap: 16px;
}

.gap-12 {
    gap: 12px;
}

.gap-8 {
    gap: 8px;
}

.gap-4 {
    gap: 4px;
}

.gri-tem-col-rep-24 {
    grid-template-columns: 200px repeat(24, 1fr);
}

.hei-200 {
    height: 200px;
}

.hei-80 {
    height: 80px;
}

.hei-50 {
    height: 50px;
}

.hei-40 {
    height: 40px;
}

.hei-30 {
    height: 30px;
}

.hei-25 {
    height: 25px;
}

.hei-20 {
    height: 20px;
}

.hei-100x100 {
    height: 100%;
}

.hei-80x100 {
    height: 80%;
}

.hei-aut {
    height: auto;
}

.hei-100-vh {
    height: 100vh;
}

.jus-con-cen {
    justify-content: center;
}

.jus-con-spa-bet {
    justify-content: space-between;
}

.lef-8 {
    left: 8px;
}

.mar-16 {
    margin: 16px;
}

.mar-8 {
    margin: 8px;
}

.mar-bot-8 {
    margin-bottom: 8px;
}

.mar-lef-250 {
    margin-left: 250px;
}

.mar-lef-50 {
    margin-left: 50px;
}

.mar-rig-25 {
    margin-right: 25px;
}

.mar-top-76 {
    margin-top: 76px;
}

.mar-top-25 {
    margin-top: 25px;
}

.mar-top-16 {
    margin-top: 16px;
}


.max-hei-400 {
    max-height: 400px;
}

.max-hei-200 {
    max-height: 200px;
}

.max-hei-80 {
    max-height: 80px;
}


.max-hei-40 {
    max-height: 40px;
}

.max-hei-100-100 {
    max-height: 100%;
}

.max-wid-400 {
    max-width: 400px;
}

.max-wid-100-100 {
    max-width: 100%;
}

.max-wid-80 {
    max-width: 80px;
}

.obj-fit-cov {
    object-fit: cover;
}

.ove-hid {
    overflow: hidden;
}

.ove-x-aut {
    overflow-x: auto;
}

.ove-y-aut {
    overflow-y: auto;
}

.ove-y-scr {
    overflow-y: scroll;
}

.pad-100 {
    padding: 100px;
}

.pad-16 {
    padding: 16px;
}

.pad-14 {
    padding: 14px;
}

.pad-12-20 {
    padding: 12px 20px;
}

.pad-12 {
    padding: 12px;
}

.pad-8 {
    padding: 8px;
}

.pad-5 {
    padding: 5px;
}

.pad-4 {
    padding: 4px;
}

.pad-bot-100 {
    padding-bottom: 100px;
}

.pad-bot-4 {
    padding-bottom: 4px;
}

.pad-lef-24 {
    padding-left: 24px;
}

.pad-lef-12 {
    padding-left: 12px;
}

.pad-lef-8 {
    padding-left: 8px;
}

.pad-lef-0 {
    padding-left: 0px;
}

.pad-log-lat {
    padding-left: clamp(32px, 5vw, 100px);
    padding-right: clamp(32px, 5vw, 100px);
}

.pad-rig-24 {
    padding-right: 24px;
}

.pad-rig-16 {
    padding-right: 16px;
}

.pad-rig-12 {
    padding-right: 12px;
}

.pad-rig-8 {
    padding-right: 8px;
}

.pad-top-100 {
    padding-top: 100px;
}

.pad-top-24 {
    padding-top: 24px;
}

.pad-top-16 {
    padding-top: 16px;
}

.pad-top-4 {
    padding-top: 4px;
}

.pos-abs {
    position: absolute;
}

.pos-fix {
    position: fixed;
}

.pos-rel {
    position: relative;
}

.rig-16 {
    right: 16px;
}

.rig-10 {
    right: 10px;
}

.rig-8 {
    right: 8px;
}

.right-12-n {
    right: -12px;
}

.tex-ali-cen {
    text-align: center;
}

.tex-ali-lef {
    text-align: left;
}

.tex-ali-rig {
    text-align: right;
}

.tex-dec-und {
    text-decoration: underline;
}

.tex-ove-ell {
    text-overflow: ellipsis;
}

.tex-und-off-6 {
    text-underline-offset: 6px;
}

.top-60 {
    top: 60px;
}

.top-34 {
    top: 34px;
}

.top-16 {
    top: 16px;
}

.top-10 {
    top: 10px;
}

.top-8 {
    top: 8px;
}

.tou-act-man {
    touch-action: manipulation
}

.use-sel-non {
    user-select: none;
}

.vis-hid {
    visibility: hidden;
}

.vis-vis {
    visibility: visible;
}

.whi-spa-now {
    white-space: nowrap;
}

.wid-400 {
    width: 400px;
}

.wid-200 {
    width: 200px;
}

.wid-100 {
    width: 100px;
}

.wid-80 {
    width: 80px;
}

.wid-50 {
    width: 50px;
}

.wid-40 {
    width: 40px;
}

.wid-30 {
    width: 30px;
}

.wid-25 {
    width: 25px;
}

.wid-20 {
    width: 20px;
}

.wid-16 {
    width: 16px;
}

.wid-100x100 {
    width: 100%;
}

.wid-50x100 {
    width: 50%;
}

.wid-100-per-calc-16 {
    width: calc(100% - 16px);
}

.wid-50-per-calc-16 {
    width: calc(50% - 16px);
}

.wid-33-per-calc-16 {
    width: calc(33% - 16px);
}

.wor-bre-bre-wor {
    word-break: break-word;
}

.z-ind-1 {
    z-index: 1
}


@media (max-width: 768px) {
    .gri-tem-col-rep-24 {
        grid-template-columns: 100px repeat(24, 1fr);
    }

    .hora-calendario:not(.hora-0):not(.hora-4):not(.hora-8):not(.hora-12):not(.hora-16):not(.hora-20) {
        visibility: hidden;
    }

    .content {
        margin-left: 0;
        padding: 1rem;
        padding-bottom: 70px;
    }

    #body-aside {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        width: 100%;
    }

    .aside-selected,
    .aside-not-selected {
        flex: 1 1 0; /* permite que se repartan el ancho */
        min-width: 0; /* clave para que ellipsis funcione */
        padding: 12px 0 12px 0;
    }

    .botonAside {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 8px;
    }

        .botonAside span {
            flex: 1;
            overflow: hidden;
            white-space: nowrap;
            text-overflow: ellipsis;
            width: 100%;
        }

    .wid-50-per-calc-16, .wid-33-per-calc-16 {
        width: calc(100% - 16px);
    }
}
