.gradient {
    background-image: linear-gradient(
      to bottom,
      rgba(243, 244, 246, 0.1),
      rgba(0, 0, 0, 0.8)
    );
  }
  
  .group:hover .group-hover\:translate-y-0 {
    transform: translateY(0);
  }
  
  ::-webkit-scrollbar {
    width: 10px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background-color: #fff;
  }
  
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background-color: #4b5563;
    border-radius: 10px;
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #4b5563;
  }
  
  ::selection {
    background: rgb(107 114 128); /* WebKit/Blink Browsers */
  }
  ::-moz-selection {
    background: rgb(107 114 128); /* Gecko Browsers */
  }
  