/* =======================
   RESPONSIVE
========================== */
@media (max-width: 768px) {
    .sidebar {
        position: fixed;
        left: -250px;
        width: 250px;
        height: 100vh;
        background-color: #343a40;
        transition: left 0.3s ease-in-out;
        z-index: 1000;
    }
    
    .sidebar.show {
        left: 0;
    }

    .menu-toggle-btn {
        position: fixed;
        top: 10px;
        left: 10px;
        z-index: 1100;
    }
}
