* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--fondo-app);
    color: var(--texto-principal);
    height: 100vh;
    overflow: hidden;
}

/* El contenedor padre ahora alinea Sidebar a la izq. y el resto a la der. */
.app-container {
    display: flex;
    width: 100%;
    height: 100vh;
}

/* Envuelve el Header y el Contenido Principal */
.main-wrapper {
    display: flex;
    flex-direction: column;
    flex: 1;
    height: 100%;
    overflow: hidden;
}