/* --- NOTIFY SYSTEM CSS --- */
:root {
    --notify-success: #00ffcc;
    --notify-error: #ff4757;
    --notify-info: #00d2ff;
    --notify-bg: rgba(15, 17, 26, 0.95);
    --notify-border: rgba(255, 255, 255, 0.1);
}

/* Toast Container */
#notify-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 999999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
}

/* Base Toast Style */
.toast {
    background: var(--notify-bg);
    color: #fff;
    padding: 16px 24px;
    border-radius: 14px;
    border: 1px solid var(--notify-border);
    backdrop-filter: blur(12px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 280px;
    max-width: 400px;
    font-size: 0.95rem;
    font-weight: 500;
    pointer-events: auto;
    animation: toastSlideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    cursor: pointer;
}

.toast.removing {
    animation: toastSlideOut 0.3s ease forwards;
}

/* Toast Variants */
.toast-success { border-left: 4px solid var(--notify-success); }
.toast-error   { border-left: 4px solid var(--notify-error); }
.toast-info    { border-left: 4px solid var(--notify-info); }

/* CUSTOM CONFIRM MODAL */
.confirm-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 9999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.confirm-card {
    background: #0f111a;
    width: 100%;
    max-width: 440px;
    padding: 35px;
    border-radius: 28px;
    border: 1px solid var(--notify-border);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
    text-align: center;
    animation: cardSlideIn 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.confirm-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.confirm-message {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.confirm-actions {
    display: flex;
    gap: 12px;
}

.confirm-btn {
    flex: 1;
    padding: 14px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: 0.2s;
    border: none;
    outline: none;
}

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

.btn-confirm {
    background: var(--notify-success);
    color: #080a10;
    box-shadow: 0 10px 20px rgba(0, 255, 204, 0.2);
}

.btn-confirm:hover { transform: translateY(-2px); box-shadow: 0 15px 30px rgba(0, 255, 204, 0.3); }
.btn-cancel:hover { background: rgba(255, 255, 255, 0.1); }

/* Animations */
@keyframes toastSlideIn { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes toastSlideOut { to { transform: translateX(100%); opacity: 0; } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes cardSlideIn { from { transform: translateY(30px) scale(0.95); opacity: 0; } to { transform: translateY(0) scale(1); opacity: 1; } }

/* Mobile Adaptations */
@media (max-width: 500px) {
    #notify-container { top: 15px; left: 15px; right: 15px; }
    .toast { min-width: auto; width: 100%; }
}
