/* Responsive CSS */

.mobile-unfriendly-message {
    display: none; /* Hidden by default */
    position: fixed; /* Cover the whole screen */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Dark overlay */
    color: white;
    z-index: 9999; /* Make sure it's on top */
    padding: 20px;
    text-align: center;
    box-sizing: border-box; /* Include padding in width/height */
}

.mobile-unfriendly-message p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.2em;
}

/* Show message on smaller screens (e.g., less than 768px) */
@media (max-width: 767px) {
    .mobile-unfriendly-message {
        display: flex; /* Use flex to help center content */
        align-items: center;
        justify-content: center;
    }

    /* Hide the main content when the message is shown */
    .sidebar,
    .content-wrapper {
        display: none !important; /* Important to override other display properties */
    }
} 