/* ===== Custom Global Scrollbar Styles ===== */

/* Chrome, Safari, Edge */
body::-webkit-scrollbar {
    width: 10px;
  }
  
  body::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  
  body::-webkit-scrollbar-thumb {
    background: #0066ff;
    border-radius: 6px;
    transition: background 0.3s ease;
  }
  
  body::-webkit-scrollbar-thumb:hover {
    background: #004dcc;
  }
  
  /* Firefox */
  body {
    scrollbar-width: thin;
    scrollbar-color: #0066ff #f1f1f1;
  }
  