/* Custom styles for Restaurant Menu */

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI',
      Roboto, 'Helvetica Neue', Arial, sans-serif;
  }
  
  /* Smooth scrollbar */
  ::-webkit-scrollbar {
    width: 8px;
  }
  
  ::-webkit-scrollbar-track {
    background: transparent;
  }
  
  ::-webkit-scrollbar-thumb {
    background: #d6d3d1;
    border-radius: 4px;
  }
  
  .dark ::-webkit-scrollbar-thumb {
    background: #2a2a2a;
  }
  