/* Custom Notification Modal */
.notification-overlay {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    animation: fadeIn 0.2s ease;
}

.notification-overlay.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-modal {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    max-width: 450px;
    width: 90%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
    position: relative;
}

.notification-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
}

.notification-icon.success {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    color: var(--white);
}

.notification-icon.error {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: var(--white);
}

.notification-icon.warning {
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    color: var(--white);
}

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

.notification-icon.confirm {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
}

.notification-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-blue);
    text-align: center;
    margin-bottom: 15px;
}

.notification-message {
    font-size: 1rem;
    color: var(--text-dark);
    text-align: center;
    line-height: 1.6;
    margin-bottom: 25px;
}

.notification-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.notification-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 100px;
}

.notification-btn.primary {
    background: var(--primary-blue);
    color: var(--white);
}

.notification-btn.primary:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 91, 168, 0.3);
}

.notification-btn.secondary {
    background: var(--light-gray);
    color: var(--text-dark);
    border: 2px solid #e0e0e0;
}

.notification-btn.secondary:hover {
    background: #e0e0e0;
}

.notification-btn.danger {
    background: var(--primary-red);
    color: var(--white);
}

.notification-btn.danger:hover {
    background: #c71a1f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(227, 30, 36, 0.3);
}

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

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 768px) {
    .notification-modal {
        padding: 25px 20px;
        max-width: 90%;
    }

    .notification-title {
        font-size: 1.3rem;
    }

    .notification-message {
        font-size: 0.95rem;
    }

    .notification-buttons {
        flex-direction: column;
    }

    .notification-btn {
        width: 100%;
    }
}
