/* Sidebar styles - Mobile */

@media (max-width: 768px) {
  #sidebar {
    position: fixed;
    left: -100%;
    top: 0;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    z-index: 1000;
    transition: left 0.3s ease;
  }

  #sidebar.open {
    left: 0;
  }

  #sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
  }

  #sidebar-overlay.show {
    display: block;
  }
}
