/* Style for the modal */
.thwepo-modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent background */
}

.thwepo-modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 600px;
}

.thwepo-modal-close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 0;
    right: 10px;
    background: none;
    border: none;
}

.thwepo-modal-close:hover,
.thwepo-modal-close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

button#show-options-modal {
    background-color: #007cba;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
}

button#show-options-modal:hover {
    background-color: #005f8d;
}
