* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    background-color: #111111; /* Fondo oscuro de producción */
}

/* El contenedor de la app ya no necesita columnas Grid */
.app {
    width: 100vw;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* El header superior se mantiene fijo arriba de todo */
.header {
    height: 70px;
    width: 100%;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    padding: 0 30px;
    position: fixed; /* Se queda estático arriba al hacer scroll */
    top: 0;
    left: 0;
    z-index: 1000; /* Por encima de todo, excepto tal vez el menú */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* El botón de hamburguesa y el título dentro del header */
.menu-toggle {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    margin-right: 20px;
}

.header h1 {
    font-size: 20px;
    font-weight: 600;
    color: #333333;
}

/* El contenido principal empieza 70px abajo para no quedar oculto tras el header */
.content {
    margin-top: 70px;
    flex: 1;
    padding: 50px;
    min-height: calc(100vh - 70px);
    background-color: #111111; /* Cambia el color gris por este negro profundo */
}