.aside-container {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 24vh;
    padding: 14px 10px;
    box-sizing: border-box;
    text-align: center;
    border-right: 1px solid var(--border);
}

.logo_container { height: 7%; display: flex; align-items: center; justify-content: center; }
.logo { height: 80%; }

#sesion_container { display: flex; flex-direction: column; margin-top: 4%; height: 6%; }
#sesion_label { font-size: 1.6vh; color: var(--text-muted); margin-bottom: 4px; }

#sesion_select {
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 1.6vh;
    font-family: inherit;
    padding: 1%;
    margin: 0 auto;
    text-align: center;
    width: 92%;
    height: 55%;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%238fa3b0%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat;
    background-position: right .7em top 50%;
    background-size: .65em auto;
    transition: border-color .15s ease;
}
[data-tema="4"] #sesion_select,
[data-tema="4"] #sesion_select_mobile,
[data-tema="5"] #sesion_select,
[data-tema="5"] #sesion_select_mobile{
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%238a7c6a%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E');
}
#sesion_select:focus { border-color: var(--accent); outline: none; }

.estadisticas_container { display: flex; height: 22%; text-align: center; }
.tablaEstadisticas { border-collapse: collapse; width: 80%; margin: 0 auto; text-align: left; font-size: 1.6vh; }
.tablaEstadisticas th { padding-right: 10%; font-weight: 500; color: var(--text-muted); }
.tablaEstadisticas td { font-family: 'JetBrains Mono', monospace; }

.tiempos_container { width: 100%; height: 62%; margin-top: 2vh; overflow: auto; scrollbar-width: none; -ms-overflow-style: none; }
.tiempos_container::-webkit-scrollbar { display: none; }

.tablaTiempos { width: 90%; font-size: 1.6vh; font-family: 'JetBrains Mono', monospace; border-collapse: collapse; margin: auto; }
.tablaTiempos td { padding-top: 0.8vh; padding-bottom: 0.8vh; border: 1px solid var(--border); }
.tablaTiempos th { text-align: center; font-weight: 600; font-family: 'Space Grotesk', sans-serif; border: 1px solid var(--border); padding-block: 4px; }
.tablaTiempos-tiempo:hover { cursor: pointer; }

.toggle-box {
    position: fixed;
    top: 50%;
    left: 0;
    height: 85px;
    transform: translateY(-50%);
    border-style: solid;
    border-width: 1px;
    border-left: none;
    border-radius: 0 10px 10px 0;
    padding: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: left 0.3s ease;
    z-index: 1000;
}
.side-panel {
    position: fixed;
    top: 0;
    left: -215px;
    width: 215px;
    height: 100%;
    text-align: center;
    box-shadow: 2px 0 12px rgba(0,0,0,0.25);
    transition: left 0.3s ease;
    padding: 10px;
    z-index: 999;
}
.side-panel.open { left: 0; }
.toggle-box.open { left: 215px; }

@media (max-width: 575.98px) { .aside-container { display: none; } .estadisticas_container { margin-top: 15px; } }
@media (min-width: 576px) and (max-width: 767.98px) { .aside-container { display: none; } .estadisticas_container { margin-top: 15px; } }
@media (min-width: 768px) and (max-width: 991.98px) { .aside-container { display: none; } .estadisticas_container { margin-top: 15px; } }
@media (min-width: 992px) and (max-width: 1199.98px) { .tablaEstadisticas td { padding-left: 10%; } }
@media (min-width: 1200px) { .tablaEstadisticas td { padding-left: 10%; } }