/* Mobile Navigation Styles */
.toggle-sidebar {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #ff7900;
  cursor: pointer;
  margin-right: 15px;
  padding: 5px;
  display: none;
  transition: color 0.3s ease;
}

.toggle-sidebar:hover {
  color: #e56a00;
}

/* Mobile responsive styles */
@media (max-width: 480px) {
  .toggle-sidebar {
    display: block !important;
  }

  .sidebar {
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }

  .sidebar.active {
    transform: translateX(0);
    z-index: 1001;
  }

  .main-content {
    margin-left: 0;
  }

  /* Overlay when sidebar is open */
  .sidebar.active::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
    pointer-events: none;
  }
}

/* Header flex layout for mobile button */
.header-mobile-layout {
  display: flex;
  align-items: center;
}
