.dialog {
    z-index: 3;
    display: none;
    width: 300px;
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.dialog h2 {
    margin-top: 0;
}

.dialog-body {
    font-size: 16px;
    margin-bottom: 20px;
    text-align: center;
}

.dialog-body p {
    margin-bottom: 14px;
}

.dialog-body label {
    display: block;
    cursor: pointer;
}

.dialog-body input[type="radio"] {
    display: none;
}

.dialog-body input[type="radio"] + span {
    position: relative;
    display: inline-block;
    padding: 10px;
    margin-right: 1px;
    cursor: pointer;
    border: 1px solid #2197A6;
    border-radius: 5px;
    font-size: 18px;
}

.dialog-body input[type="radio"]:checked + span {
    background-color: #2197A6;
    color: #fff;
}

.dialog-buttons {
    text-align: center;
}

.dialog-button {
    padding: 8px 16px;
    background-color: #2197A6;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.closeButton {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: transparent;
    border: none;
    cursor: pointer;
}
.dialog-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2;
    display: none;
}