/* ========== POPUP NOTIFICATION CSS ========== */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

.popup-card {
    background: white;
    border-radius: 28px;
    width: 90%;
    max-width: 380px;
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.3s;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.popup-overlay.show .popup-card {
    transform: scale(1);
}

.popup-header {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    padding: 25px 20px;
    text-align: center;
}

.popup-header i {
    font-size: 56px;
    color: white;
    margin-bottom: 10px;
}

.popup-header h3 {
    color: white;
    font-size: 22px;
    font-weight: 700;
    margin: 0;
}

.popup-body {
    padding: 25px 20px;
    text-align: center;
}

.popup-body p {
    color: #475569;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 5px;
}

.popup-body small {
    color: #94a3b8;
    font-size: 12px;
}

.popup-footer {
    padding: 15px 20px 25px;
    display: flex;
    gap: 12px;
    justify-content: center;
}

.btn-popup-yes {
    background: #f97316;
    color: white;
    padding: 12px 28px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    flex: 1;
    font-size: 14px;
}

.btn-popup-yes:hover {
    background: #ea580c;
    transform: translateY(-2px);
}

.btn-popup-no {
    background: #f1f5f9;
    color: #475569;
    padding: 12px 28px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    flex: 1;
    font-size: 14px;
}

.btn-popup-no:hover {
    background: #e2e8f0;
}

/* Toast Notification */
.toast-notif {
    position: fixed;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: #1e293b;
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    z-index: 10000;
    opacity: 0;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.toast-notif.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.toast-notif i {
    font-size: 18px;
}

@media (max-width: 480px) {
    .popup-header i {
        font-size: 44px;
    }
    .popup-header h3 {
        font-size: 18px;
    }
    .popup-body p {
        font-size: 14px;
    }
    .btn-popup-yes, .btn-popup-no {
        padding: 10px 20px;
        font-size: 13px;
    }
    .toast-notif {
        font-size: 12px;
        padding: 10px 20px;
        white-space: nowrap;
    }
}