#alertContainer {
    position: fixed;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 1000;
    top: 30px;
    right: 30px;
    z-index: 9999999;
}

#alertContainer .alert {
    color: white;
    font-size: 18px;
    background-color: #7b4bf24a;
    padding-inline: 2rem;
    padding-block: 1rem;
    border-radius: 1.5rem;
    margin-bottom: 1rem;
    display: none;
    direction: rtl;
}

#alertContainer .alert.danger  {
    background-color: #790000;
}
#alertContainer .alert.success  {
    background-color: #054903;
}
