/* Sidebar base */
.sidebar {
  width: 300px;
  background: #1c1e20;
  border-left: 1px solid #2a2d31;
  padding: 15px;
  transition: transform 0.3s ease-in-out;
}

/* Desktop: sidebar always visible */
@media (min-width: 769px) {
  .sidebar {
    position: relative;
    transform: none !important;
  }
}

/* Mobile: sidebar hidden until toggled */
@media (max-width: 768px) {
  .sidebar {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    max-width: 80%;
    z-index: 1100;
    transform: translateX(100%);
    box-shadow: -4px 0 10px rgba(0,0,0,0.5);
  }
  .sidebar.open {
    transform: translateX(0);
  }

  /* Dark overlay behind sidebar */
  .sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 1000;
  }
  .sidebar-overlay.open {
    display: block;
  }
}