body {
    font-family: 'Comic Neue', cursive;
    margin: 0;
    padding: 0;
}

/* Botón hamburguesa */
.menu-toggle {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 1000;
    font-size: 28px;
    background-color: #6646a6;
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    color: white;
    cursor: pointer;
}

/* Menú contenedor */
.menu-superior {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Alinea a la izquierda si prefieres */
    padding-top: 0; /* ❌ Elimina espacio innecesario */
}


/* Enlaces del menú */
.menu-links {
    display: none;
    flex-direction: column;
    gap: 10px;
    padding: 4px 0 0 10px; /* ✅ Agrega padding desde el top si hay menú fijo */
    position: fixed;
    top: 0;
    left: 60px;
    background-color: rgba(66, 65, 65, 0.103); /* O el color que quieras */
    /*width: 100%;
    height: 100vh;*/
    z-index: 998;
}

.menu-links.activo {
    display: flex;
}

.menu-links a {
    color: #280061;
    text-decoration: none;
    font-weight: bold;
    padding: 3px 12px;
    border-radius: 5px;
    text-align: center;
    background-color: rgba(255,255,255,0.5);
    width: fit-content;
}

.menu-links a:hover {
    background-color: #e0a6e1;
}

/* Foto del usuario */
.foto-usuario {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-left: 10px;
    vertical-align: middle;
}

.nombre-usuario {
    font-weight: bold;
    font-size: 1rem;
    color: #280061;
    margin-left: 6px;
}