/* Animazione per le notifiche */
@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Stile notifiche */
.notifica {
    position: fixed;
    top: 80px;
    right: 20px;
    background: #f1c40f;
    color: #000;
    padding: 15px 25px;
    border-radius: 12px;
    z-index: 9999;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    cursor: pointer;
    animation: slideIn 0.3s;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    max-width: 350px;
}

.notifica i {
    margin-right: 8px;
}

.notifica:hover {
    background: #d4ac0d;
}

/* Selettore lingua dropdown */
.language-dropdown {
    position: relative;
    display: inline-block;
}

.language-btn {
    background: #2a3942;
    color: #e9edef;
    border: none;
    padding: 8px 12px;
    border-radius: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}

.language-btn:hover {
    background: #3b4a54;
}

.language-dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: #202c33;
    min-width: 160px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 100;
    margin-top: 5px;
}

.language-dropdown-content a {
    color: #e9edef;
    padding: 12px 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.language-dropdown-content a:hover {
    background: #2a3942;
}

.language-dropdown-content a.active {
    background: #00a884;
    color: white;
}

.show {
    display: block;
}
