/* Custom Notification System Styles */
.custom-notification {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.7);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    min-width: 400px;
    max-width: 500px;
    opacity: 0;
    animation: notifSlideIn 0.3s ease-out forwards;
}

@keyframes notifSlideIn {
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

.custom-notification.success {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

.custom-notification.error {
    background: linear-gradient(135deg, #eb3349 0%, #f45c43 100%);
}

.custom-notification.warning {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.custom-notification.info {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.notif-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.notif-icon {
    font-size: 48px;
    margin-right: 15px;
}

.notif-title {
    color: white;
    font-size: 24px;
    font-weight: bold;
    flex: 1;
}

.notif-message {
    color: rgba(255, 255, 255, 0.95);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.notif-buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.notif-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.notif-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.notif-btn-primary {
    background: white;
    color: #667eea;
}

.notif-btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.notif-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 9999;
    opacity: 0;
    animation: fadeIn 0.3s ease-out forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Toast notification for quick messages */
.toast-notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 10001;
    min-width: 300px;
    animation: toastSlideIn 0.3s ease-out;
}

@keyframes toastSlideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.toast-notification.success {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

.toast-notification.error {
    background: linear-gradient(135deg, #eb3349 0%, #f45c43 100%);
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.toast-icon {
    font-size: 24px;
}

.toast-message {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
}

/* Mobile responsive */
@media (max-width: 600px) {
    .custom-notification {
        min-width: 90%;
        padding: 20px;
    }

    .toast-notification {
        right: 15px;
        bottom: 15px;
        min-width: calc(100% - 30px);
    }
}