<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.modal-login {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}
.modal-canc {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}



.modal-content-canc {
    background-color: #fff;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    width: 400px;
    white-space: nowrap !important;
}

.modal-content-setup {
    background-color: #fff;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    width: 600px;
    white-space: nowrap !important;
}

.modal-header-canc {
    font-size: 18px;
    font-weight: bold;
}
.modal-body-canc {
    margin: 15px 0;
}
.modal-footer-canc {
    display: flex;
    justify-content: space-around;
}

#cancelButton {
    border-color: gray;
}

#confirmButton:hover {
    background-color: var(--bg-btn-confirm) !important
}
#cancelButton:hover {
    background-color: var(--bg-btn-confirm) !important
}

.confirmButton:hover {
    background-color: var(--bg-btn-confirm) !important
}
.cancelButton:hover {
    background-color: var(--bg-btn-confirm) !important
}</pre></body></html>