.custom-alert {
    display: block;
    width: fit-content;
    margin: 0 auto;
    padding: 0.5rem 1rem;
    padding-left: 2rem;
    border-radius: 25px;
    /* margin-top: -1rem; */

    background-repeat: no-repeat;
    background-position: 10px center;

    animation: alert-drop-in 0.3s ease 0s 1;
}
.custom-alert-success {
    background-color: #CCFCE8;
    color: #1A6761;
    background-image: url('../icons/toast_success.svg');
}
.custom-alert-error {
    background-color: #FCCCCD;
    color: #7B1113;
    background-image: url('../icons/toast_error.svg');
}
.custom-alert ul{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    padding: 0;
    margin: 0;
}