/* Theme 5 Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
  }
  
  ::-webkit-scrollbar-track {
    background: #e2e8f0;
    border-radius: 10px;
  }
  
  ::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #334155 0%, #1e293b 100%);
    border-radius: 10px;
    border: 2px solid #e2e8f0;
    transition: background 0.3s ease;
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
  }
  
  /* Firefox */
  * {
    scrollbar-width: thin;
    scrollbar-color: #334155 #e2e8f0;
  }
  