/**
 * RevisioneOK - Notifiche (da rinnovo_booking)
 */
.notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.notification {
    margin: 20px 20px;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    color: #000;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    animation: fadeIn 0.5s ease-in-out;
}

.notification.info {
    color: #3498db;
}

.notification.success {
    color: #2ecc71;
}

.notification.warning {
    color: #c49c00;
}

.notification.error {
    color: #e74c3c;
}

.notification-h3 {
    font-size: 20px;
    font-weight: bold;
    margin: 0;
    padding: 0;
}

.notification-p {
    margin: 0;
    padding: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
