#are-you-sure-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
}

#ays-box {
    background-color: #101010;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    min-width: 300px;
    width: 60%;
    border: 1px solid goldenrod;
    box-shadow: 0px 0px 10px 4px rgba(0,0,0,0.75);
    -webkit-box-shadow: 0px 0px 10px 4px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 10px 4px rgba(0,0,0,0.75);
}

#are-you-sure-modal .ays-buttons {
    margin-top: 20px;
    display: flex;
    justify-content: space-around;
}

#are-you-sure-modal .ays-buttons a {
    text-decoration: none;
    padding: 10px 50px;
    border-radius: 1px;
    cursor: pointer;
}

#are-you-sure-modal .ays-buttons a#ays-no {
    color: #000000;
}