.dialog {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    background-color: #fff;
    border: 2px solid #333;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-width: 300px;
    /* Adjust width as needed */
}

.localButton,
.localButtonLight {
    width: 100%;
    /* Make buttons fill the dialog's width */
    padding: 15px;
    box-sizing: border-box;
    /* Ensure padding is within width */
    margin-top: 10px;
    /* Space between buttons */
    font-size: 16px;
    transition: background-color 0.3s, color 0.3s;
    /* Smooth hover transition */
}

.localButton {
    background-color: #11a172;
    /* Eyecatching, vibrant color */
    color: #fff;
    font-weight: bold;
    border: 2px solid #156b4e;
    border-radius: 5px;
    cursor: pointer;
}

.localButton:hover {
    background-color: #4ea488;
    /* Darker shade on hover */
    color: #e0e0e0;
    /* Slightly lighter text color */
}

.localButtonLight {
    background-color: #f1f1f1;
    /* Less prominent color */
    color: #666;
    font-weight: normal;
    border: 2px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
}

.localButtonLight:hover {
    background-color: #e0e0e0;
    /* Light gray highlight on hover */
    color: #333;
    /* Darker text color */
}

/* Hide dialog initially */
.hidden {
    display: none;
}