#customAlert {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

#customConfirm {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.alert-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 1.25rem;
    border-radius: 0.3125rem;
    box-shadow: 0 0.3125rem 0.9375rem rgba(0, 0, 0, 0.3);
    width: 18.75rem;
    text-align: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: 100% 100%;
    background-color: white;
}

.confirm-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 1.25rem;
    border-radius: 0.3125rem;
    box-shadow: 0 0.3125rem 0.9375rem rgba(0, 0, 0, 0.3);
    width: 18.75rem;
    text-align: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: 100% 100%;
    background-color: white;
}

#okBtn {
    padding: 0.625rem 1.25rem;
    margin-top: 1.25rem;
    border: none;
    background-color: pink;
    color: white;
    border-radius: 0.3125rem;
    cursor: pointer;
}

#okBtn:hover {
    background-color: deeppink;
}

#yesBtn {
    padding: 0.625rem 1.25rem;
    margin-top: 1.25rem;
    margin-right: 1rem;
    border: none;
    background-color: red;
    color: white;
    border-radius: 0.3125rem;
    cursor: pointer;
}

#yesBtn:hover {
    background-color: darkred;
}

#noBtn {
    padding: 0.625rem 1.25rem;
    margin-top: 1.25rem;
    margin-left: 1rem;
    border: none;
    background-color: green;
    color: white;
    border-radius: 0.3125rem;
    cursor: pointer;
}

#noBtn:hover {
    background-color: darkgreen;
}
