/* Custom Notification System - Glassmorphism Design */

.notif-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.notif-overlay.active {
    display: flex;
    opacity: 1;
}

.notif-card {
    background: rgba(30, 30, 45, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-align: center;
}

.notif-overlay.active .notif-card {
    transform: scale(1);
}

.notif-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.notif-title {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: block;
}

.notif-message {
    color: #a1a1aa;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    display: block;
}

.notif-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.notif-btn {
    padding: 0.7rem 1.5rem;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    min-width: 100px;
}

.notif-btn-confirm {
    background: linear-gradient(135deg, #4f46e5, #3b3b6a);
    color: white;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.notif-btn-confirm:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(79, 70, 229, 0.5);
}

.notif-btn-cancel {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.notif-btn-cancel:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Specific Icons */
.notif-icon-alert { color: #4f46e5; }
.notif-icon-confirm { color: #f39c12; }
.notif-icon-success { color: #2ecc71; }
.notif-icon-danger { color: #e74c3c; }
