/* Aggiungi questo al tuo style.css se non l'hai già fatto */
.user-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    border: 2px solid #fff;
}

.user-menu-dropdown {
    position: absolute;
    top: 50px;
    right: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 5px 0;
}

.menu-item {
    width: 100%;
    padding: 10px 15px;
    border: none;
    background: none;
    text-align: left;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
}

.delete-btn { color: #ff4d4d; border-top: 1px solid #eee; }