.menu-container {
    position: relative;
    display: flex;
    justify-content: flex-end; /* Allinea l'icona a destra */
    padding: 10px;
    transform: translateY(-70%);
}

.menu-icona {
    cursor: pointer;
    font-size: 24px;
}

.menu-dropdown {
    display: none;
    position: fixed; /* Posizione fissa per coprire tutto lo schermo */
    background-color: white;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;  /* z-index alto per metterlo in primo piano */
    width: 200px;
    transition: all 0.3s ease;
    border-radius: 8px; /* Bordi arrotondati */
    overflow: hidden;
}

.menu-dropdown.show {
    display: block;
}

.menu-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-items li {
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

.menu-items li:last-child {
    border-bottom: none;
}

.menu-items a {
    text-decoration: none;
    color: black;
    display: block;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.menu-items a:hover {
    background-color: #f2f2f2;
    color: #333;
}

.menu-items a:active {
    background-color: #ddd;
    transform: scale(0.98); /* Effetto di pressione */
}

/* Stile per l'elemento selezionato */
.menu-items a.selected {
    background-color: #e0e0e0;
    font-weight: bold;
}