.maintenance-notice-popup {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 99999; /* 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.6); /* Darker overlay */
    display: flex; /* Use flexbox for centering */
    align-items: center;
    justify-content: center;
}

.maintenance-notice-popup-content {
    background-color: #ffffff; /* White background */
    margin: auto; /* Centered */
    padding: 30px; /* More padding */
    border: 3px solid #8B0000; /* Dark red border */
    width: 90%; /* Wider on smaller screens */
    max-width: 600px; /* Max width for larger screens */
    position: relative;
    text-align: center;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.3); /* Stronger shadow */
    border-radius: 10px; /* Slightly more rounded corners */
    font-family: Arial, sans-serif; /* Professional font */
    color: #333; /* Darker text color */
}

.maintenance-notice-popup-close {
    color: #8B0000; /* Dark red for close button */
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 32px; /* Larger close button */
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.maintenance-notice-popup-close:hover,
.maintenance-notice-popup-close:focus {
    color: #CC0000; /* Lighter red on hover */
    text-decoration: none;
}

.maintenance-notice-title {
    font-size: 2em; /* Larger title */
    color: #8B0000; /* Dark red title */
    margin-top: 0;
    margin-bottom: 20px;
    text-transform: uppercase; /* Uppercase */
    font-weight: bold; /* Bold */
}

.maintenance-notice-text p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: justify; /* Justify text for corporate look */
}

/* Styling for Backend Admin Notice */
.maintenance-admin-notice {
    border-left-color: #8B0000 !important; /* Dark red border for admin notice */
    display: block !important; /* Force display for persistence */
}

.maintenance-admin-notice p {
    margin: 0;
    padding: 0;
}

.maintenance-admin-notice strong {
    color: #8B0000; /* Dark red for strong text in admin notice */
}

/* Styles for plugin settings page credits */
.maintenance-plugin-credits {
    font-size: 0.9em;
    color: #666;
    margin-top: 20px;
    border-top: 1px solid #eee;
    padding-top: 10px;
    text-align: center;
}
