
/* Basic Modal Styles */
.tplm-modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1000; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

.tplm-modal-content {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
    max-width: 500px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}

.tplm-modal-content h2 {
    margin-top: 0;
    color: #333;
}

.tplm-modal-content p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.5;
}

.tplm-modal-content button {
    background-color: #0073aa; /* WordPress primary blue */
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin: 5px;
    transition: background-color 0.3s ease;
}

.tplm-modal-content button:hover {
    background-color: #005177;
}

#tplm-cancel-downgrade {
    background-color: #dc3232; /* WordPress red for cancel */
}

#tplm-cancel-downgrade:hover {
    background-color: #a00;
}


