/* Button Style */
.my-popup-button {
    background-color: #008000; /* WordPress blue */
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.my-popup-button:hover {
    background-color: #005f8c;
}

/* Popup Overlay: hidden by default */
.my-popup-overlay {
    display: none; /* Initially hidden */
    position: fixed; /* Stay in place */
    z-index: 1000; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0, 0, 0, 0.6); /* Black with opacity */
}

/* Popup Content Box */
.my-popup-content {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px 30px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
}

/* Close Button */
.my-popup-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 20px;
}

.my-popup-close:hover,
.my-popup-close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}