﻿/* ============================================
   ESTILOS BASE - SKILLTRACK
   ============================================ */

/* Estilos base que no están en otros archivos CSS */
.sidebar {
    width: 180px;
    min-height: calc(100vh - 100px);
    background-color: #2e3d66;
    color: white;
    padding: 15px;
    border-radius: 10px 0 0 10px;
}

.sidebar p {
    font-size: 11px;
    margin-bottom: 5px;
}

.main-wrapper {
    flex: 1;
    display: flex;
    overflow-y: hidden;
}

.main-content {
    flex: 1;
    padding: 2rem;
    overflow-y: auto;
}

/* Reglas de no-sidebar movidas a layout.css para evitar conflictos */

.fondo-transparente {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/img/logodigit.png') no-repeat center center;
    background-size: 40%;
    opacity: 0.05;
    z-index: -1;
}

html, body {
    height: 100%;
}

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