.modal {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(240, 240, 240, .6);
}
.alert-dialog {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    max-width: 400px;
    gap: 20px;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    background-color: #FFFFFF;
    box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

.alert-icon svg {
    font-size: 40px;
    color: rgb(255, 188, 51);
}

.alert-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: smaller;
}
.alert-content h2 { color: rgba(24, 24, 24); }
.alert-content p { white-space: pre-line; }
.alert-content p, .alert-buttons .cancel { color: rgba(24, 24, 24, .6); }

.alert-buttons {
    display: flex;
    gap: 15px;
    width: 100%;
}
.alert-buttons button {
    width: 100%;
    height: 35px;
    border-radius: 10px;
    font-size: initial;
    letter-spacing: 2px;
    transition: all .3s ease-in-out;
}
.alert-buttons .download {
    color: #2492C1;
    transition: all .3s ease-in-out;
}
.alert-buttons .download:hover, .alert-buttons .download:focus {
    color: #F0F0F0;
    background-color: #2492C1;
}
.alert-buttons .cancel:hover, .alert-buttons .cancel:focus {
    color: rgb(24, 24, 24);
    background-color: rgba(148, 148, 148, .2);
}