
.alert-container{
    width: 100%;
    height: 100vh;
    z-index: 9999;
    position: fixed;
    display: none;
}

.alert-modal{
    width: 300px;
    padding: 15px 10px;
    background-color: #ffffff;
    font-size: 1.2rem;
    margin: 25px auto;
    text-align: center;
    border-radius: 5px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

.alert-modal .alert-items{
    display: inline-block;
}

.alert-green{
    color: rgb(4, 222, 4);
}

.alert-red{
    color: red;
}