#notification-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 99999;
    pointer-events: none;
}

.toast {
    background: rgba(20, 20, 25, 0.95);
    color: white;
    padding: 20px 25px;
    border-radius: 12px;
    min-width: 300px;
    max-width: 420px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    border-left: 4px solid #555;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    pointer-events: auto;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast.show {
    opacity: 1;
    transform: translateX(0);
}

.toast.success {
    border-left-color: #00f260;
    box-shadow: -5px 0 20px rgba(0, 242, 96, 0.2);
}

.toast.error {
    border-left-color: #e10600;
    box-shadow: -5px 0 20px rgba(225, 6, 0, 0.2);
}

.toast.warning {
    border-left-color: #f59e0b;
    box-shadow: -5px 0 20px rgba(245, 158, 11, 0.2);
}

.toast.info {
    border-left-color: #00C6FF;
    box-shadow: -5px 0 20px rgba(0, 198, 255, 0.2);
}

/* Confirm dialog — uses distinct class to avoid conflicts with style.css modals */
.confirm-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100000;
    opacity: 0;
    animation: confirmFadeIn 0.3s forwards;
}

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

.confirm-box {
    background: #101015;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    min-width: 400px;
    max-width: 90vw;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9);
    transform: scale(0.9);
    animation: confirmPopIn 0.3s forwards cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.confirm-box h3 {
    margin-top: 0;
    color: #e10600;
    font-size: 1.5rem;
}

.confirm-box p {
    color: #ccc;
    font-size: 1.1rem;
}

@keyframes confirmPopIn {
    to { transform: scale(1); }
}

.confirm-actions {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.confirm-btn {
    padding: 12px 24px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.confirm-btn.ok {
    background: #e10600;
    color: white;
}

.confirm-btn.ok:hover {
    background: #ff2020;
    box-shadow: 0 0 15px rgba(225, 6, 0, 0.4);
}

.confirm-btn.cancel {
    background: transparent;
    border: 1px solid #444;
    color: #888;
}

.confirm-btn.cancel:hover {
    border-color: white;
    color: white;
}