﻿.notification-container {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 450px;
    max-width: calc(100vw - 30px);
    pointer-events: none;
}

.notification {
    width: 100%;
    background: #121821;
    border: 1px solid #1C2532;
    border-left: 4px solid #11E9A1;
    border-radius: 14px;
    padding: 16px;
    color: #FFFFFF;
    box-shadow: 0 15px 40px rgba(0,0,0,.45);
    animation: notificationShow .4s ease forwards;
    pointer-events: auto;
}

    .notification.success {
        border-left-color: #11E9A1;
    }

    .notification.error {
        border-left-color: #EF4444;
    }

    .notification.warning {
        border-left-color: #F59E0B;
    }

.notification-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 6px;
}

.notification-message {
    color: #94A3B8;
    font-size: 13px;
    line-height: 1.6;
}

@keyframes notificationShow {
    from {
        opacity: 0;
        transform: translateY(-80px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes notificationHide {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-80px);
    }
}
.confirm-overlay {
    position: fixed;
    inset: 0;
    z-index: 99998;
    background: rgba(11, 15, 20, 0.72);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 80px;
}

.confirm-box {
    width: 420px;
    max-width: calc(100vw - 32px);
    background: #121821;
    border: 1px solid #1C2532;
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 20px 50px rgba(0,0,0,.45);
    animation: confirmShow .28s ease forwards;
}

    .confirm-box h4 {
        color: #FFFFFF;
        font-size: 18px;
        margin: 0 0 10px 0;
    }

    .confirm-box p {
        color: #94A3B8;
        font-size: 14px;
        line-height: 1.7;
        margin: 0;
    }

.confirm-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 22px;
}

.confirm-btn {
    border: none;
    border-radius: 999px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

    .confirm-btn.cancel {
        background: #0B0F14;
        color: #94A3B8;
        border: 1px solid #1C2532;
    }

    .confirm-btn.confirm {
        background: #11E9A1;
        color: #0B0F14;
    }

@keyframes confirmShow {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}