body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #121214;
    color: #000;
}

/* Botón hamburguesa */
.menu-btn {
    position: fixed;
    top: 15px;
    left: 15px;
    z-index: 1001;
    width: 30px;
    height: 25px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.menu-btn span {
    display: block;
    height: 4px;
    background: white;
    border-radius: 2px;
}

/* Contenedor del menú */
.sidebar {
    position: fixed;
    top: 0;
    left: -280px; /* escondido por defecto */
    width: 280px;
    height: 100vh;
    background: black;
    box-shadow: 3px 0 10px rgba(0,0,0,0.15);
    padding: 20px 0;
    box-sizing: border-box;
    transition: left 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 25px;
    z-index: 1000;
}

/* Cuando el menú está activo */
.sidebar.active {
    left: 0;
}

/* Lista del menú */
.menu-list {
    list-style: none;
    padding: 0 20px;
    margin: 0;
    flex-grow: 1;
}

.menu-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    font-weight: 700;
    font-size: 1rem;
    color: #ffffff;
    user-select: none;
    transition: background-color 0.2s ease;
    padding: 8px 12px;
    border-radius: 6px;
}
.menu-list li a {
    display: flex;
    align-items: center;
    gap: 15px;
    color: inherit;
    text-decoration: none;
}

.menu-list li svg {
    stroke: #ffffff; /* para los íconos también */
}
.menu-list li:hover {
    color: #000000;
}

.menu-list li:hover svg {
    stroke: #000000;
}


.menu-list li:hover {
    background-color: #f0f0f0;
}

/* SVG tamaño */
.menu-list svg {
    width: 24px;
    height: 24px;
    stroke: #222;
    stroke-width: 2;
    fill: none;
}

/* Texto en mayúsculas */
.menu-list li span {
    text-transform: uppercase;
    flex-grow: 1;
}

/* Texto "Menú" debajo del botón hamburguesa */
.menu-label {
    position: fixed;
    top: 50px;
    left: 20px;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    user-select: none;
    z-index: 1001;
}