
.alert-container{
    display: none;
    position: fixed;
    bottom: 25px;
    left: 25px;
    z-index: 9999;
}

#alertContent{
    position: relative;
    width: fit-content;
    height: auto;
    border-radius: 5px;
    padding: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: alertAnimation 0.5s ease-in-out;
    font-size: 14px;
    border: 1px solid;
}

.alert-primary {
    color: #084298;
    background-color: #cfe2ff;
    border-color: #b6d4fe;
}

.alert-success {
    color: #0f5132;
    background-color: #d1e7dd;
    border-color: #badbcc;
}

.alert-warning {
    color: #664d03;
    background-color: #fff3cd;
    border-color: #ffecb5;
}

.alert-danger {
    color: #842029;
    background-color: #f8d7da;
    border-color: #f5c2c7;
}