@tailwind base;

@tailwind components;

@tailwind utilities;
 

::-webkit-scrollbar {
    width: 12px;
  }
  
  ::-webkit-scrollbar-track {
    background: #f1f1f1; 
  }
  
  ::-webkit-scrollbar-thumb {
    background-color: #007bff;  
    border-radius: 10px;        
    border: 3px solid #f1f1f1;  
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background-color: #0056b3;  
  }
  
  * {
    scrollbar-width: thin;
    scrollbar-color: #0F2D97 #f1f1f1;
  }
  
  body {
    -ms-overflow-style: scrollbar;
  }
  
  body::-ms-scrollbar {
    width: 12px;
  }
  
  body::-ms-scrollbar-track {
    background: #f1f1f1;
  }
  
  body::-ms-scrollbar-thumb {
    background-color: #007bff;
    border-radius: 10px;
    border: 3px solid #f1f1f1;
  }
  
  body::-ms-scrollbar-thumb:hover {
    background-color: #0056b3;
  }
  

  