
   
    .scrollbar-hide::-webkit-scrollbar {
      display: none;
    }
    .scrollbar-hide {
      -ms-overflow-style: none;
      scrollbar-width: none;
    }
    .carousel-button {
      background-color: #10b981; 
      color: white;
      border-radius: 9999px;
      height: 2.5rem;
      width: 2.5rem;
      display: flex;
      justify-content: center;
      align-items: center;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }
    .carousel-button:hover {
      background-color: #059669;
    }
   
    .play-button {
      cursor: pointer;
      border-radius: 9999px;
      width: 64px;
      height: 64px;
      background: rgba(255, 255, 255, 0.7);
      display: flex;
      justify-content: center;
      align-items: center;
      transition: background-color 0.3s ease;
    }
    .play-button:hover {
      background: rgba(255, 255, 255, 0.9);
    }
    /* Circle play icon */
    .play-button svg {
      height: 32px;
      width: 32px;
      fill: #10b981;
      filter: drop-shadow(0 0 1px rgba(0,0,0,0.3));
    }
