.alert-overlay{
    display: flex;
    width: 100dvw;
    height: 100dvh;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1001;
    align-items: center;
    justify-content: center;
}
.alert-modal{
    display: flex;
    flex-direction: column;
    background: #fff;
    color: #000;
    width: fit-content;
    max-width: 75%;
    height: fit-content;
    border-radius: 16px;
    padding: 16px;
    gap: 16px;
}
.alert-header{
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    font-size: 24px;
    gap: 24px;
}
.alert-close-button{
    background: none;
    border: none;
    cursor: pointer;
}
.alert-body{
    font-size: 18px;
}

@media (min-width: 768px) {
    .alert-modal {
        max-width: 500px;
    }
}