.notification-container {
    position: fixed;
    top: 30px;
    display: flex;
    z-index: 999;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.toast {
    padding: 12px 20px;
    border-radius: 30px;
    font-family: "Vazirmatn", sans-serif;
    font-size: 14px;
    font-weight: bold;
    animation: fadeIn 0.7s ease-in;
}

.toast-error {
    background-color: #ff2c2cff;
    color: #ffffff;
}

.toast-warning {
    background-color: #fedb00ff;
    color: #000;
}

.toast-success {
    background-color: #d1e7dd;
    border: 1px solid #badbcc;
    color: #0f5132;
}

.toast-info {
    background-color: #fff;
    color: #000;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform:translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0px);
    }
}

.confirm-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeIn 0.2s ease-in;
}

.confirm-modal {
    background: #fff;
    border-radius: 16px;
    padding: 28px 32px;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    font-family: "Vazirmatn", sans-serif;
    direction: rtl;
    text-align: center;
}

.confirm-message {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0 0 24px 0;
    line-height: 1.8;
}

.confirm-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.confirm-btn {
    padding: 10px 28px;
    border-radius: 10px;
    border: none;
    font-family: "Vazirmatn", sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
}

.confirm-btn:hover {
    opacity: 0.85;
}

.confirm-btn-ok {
    background-color: #0f5132;
    color: #fff;
}

.confirm-btn-cancel {
    background-color: #e9ecef;
    color: #495057;
}
