/* src/styles/debugMenu.css */
.debug-menu.sidebar-container {
    z-index: 9999;
    bottom: 20px;
    top: auto !important;
  }
  
  .debug-menu .sidebar-content {
    max-height: 60vh;
    overflow-y: auto;
    padding: 8px;
    min-width: 200px;
    max-width: 240px;
  }
  
  .debug-menu button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }
  
  .debug-menu .minimized-info {
    background: #ff6b6b;
    color: white;
    font-weight: 500;
    padding: 4px 8px;
    font-size: 12px;
  }
  
  .debug-menu input[type="number"] {
    -moz-appearance: textfield;
  }
  
  .debug-menu input[type="number"]::-webkit-outer-spin-button,
  .debug-menu input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }
  
  /* Custom scrollbar for debug menu */
  .debug-menu .sidebar-content::-webkit-scrollbar {
    width: 4px;
  }
  
  .debug-menu .sidebar-content::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  
  .debug-menu .sidebar-content::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 2px;
  }