/* Reset di base */
body {
    margin: 0;
    padding: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: #fff;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Contenitore principale */
.menu-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(6px);
    padding: 2rem 3rem;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    text-align: center;
    max-width: 400px;
    width: 100%;
}

/* Titolo */
.menu-container h2 {
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    letter-spacing: 1px;
    color: #f9f9f9;
}

/* Link menu */
.menu-item {
    display: block;
    margin: 0.8rem 0;
    padding: 0.8rem;
    background: #ffffff;
    color: #2a5298;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    transition: all 0.3s ease;
}

/* Effetto hover */
.menu-item:hover {
    background: #2a5298;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Logout (se lo aggiungi) */
.logout {
    display: block;
    margin-top: 1.5rem;
    padding: 0.8rem;
    background: #b91c1c;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.logout:hover {
    background: #7f1d1d;
}
