/* Notification styles */
.notification-popup-container {
    z-index: 1060 !important;
}

.notification-popup {
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Badge animation */
@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7);
    }
    
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(220, 38, 38, 0);
    }
    
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(220, 38, 38, 0);
    }
}

#notificationButton span {
    animation: pulse 2s infinite;
}

/* Notification list styles */
.notification-list .notification-item {
    transition: all 0.2s ease;
}

.notification-list .notification-item:hover {
    transform: translateY(-2px);
}

/* SweetAlert2 customizations */
.swal2-popup {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.swal2-title {
    font-size: 1.5rem !important;
    font-weight: 600 !important;
}

/* Toast notifications */
.swal2-toast {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15) !important;
    padding: 1rem !important;
}

.swal2-toast .swal2-title {
    font-size: 1rem !important;
    margin: 0 0 0 10px !important;
} 