﻿#alerts-container {
    position: fixed;
    top: 30px;
    display: flex;
    z-index: 999;
    flex-direction: column;
    align-items: center;
    gap:10px;
}
.custom-alert {
    padding: 12px 20px;
    border-radius: 30px;
    font-family: "Vazirmatn", sans-serif;
    font-size: 14px;
    font-weight: bold;
    animation: fadeIn 0.7s ease-in;
}

.custom-alert.alert-danger {
    background-color: #ff2c2cff;
    color: #ffffff;
}

.custom-alert.alert-warning {
    background-color: #fedb00ff;
    color: #000;
}

.custom-alert.alert-success {
    background-color: #d1e7dd;
    border: 1px solid #badbcc;
    color: #0f5132;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform:translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0px);
    }
}
