/* Sidebar mobile styles */

/* Ensure sidebar has proper z-index on mobile */
@media (max-width: 1023px) {
    .pe-app-sidebar {
        z-index: 1050 !important;
    }
}

/* Backdrop styles */
.sidebar-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1045;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Show backdrop when sidebar is open on mobile */
@media (max-width: 1023px) {
    .sidebar-backdrop.show {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
}
