 .carousel-container {
      position: relative;
      width: 100%;
      padding: 0 40px;
    }

    .carousel-wrapper {
      overflow: hidden;
      position: relative;
      width: 100%;
    }

    .carousel-content {
      display: flex;
      transition: transform 0.3s ease-in-out;
      gap: 1.5rem;
    }

    .product-card {
      flex: 0 0 calc(25% - 1.125rem);
      min-width: calc(25% - 1.125rem);
    }

    .carousel-button {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: white;
      border: 1px solid #e5e7eb;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
      z-index: 10;
    }

    .carousel-button:hover {
      background: #f3f4f6;
    }

    .carousel-button.prev {
      left: 0;
    }

    .carousel-button.next {
      right: 0;
    }


  .scrollbar-thin::-webkit-scrollbar {
    height: 6px;
  }

  .scrollbar-thin::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
  }

  .scrollbar-thin::-webkit-scrollbar-thumb {
    background: #cbd5e0;
    border-radius: 10px;
  }

  .scrollbar-thin::-webkit-scrollbar-thumb:hover {
    background: #a0aec0;
  }

  /* For Firefox */
  .scrollbar-thin {
    scrollbar-width: thin;
    scrollbar-color: #cbd5e0 #f1f1f1;
  }

  /* Fixed column styling */
  .sticky {
    position: sticky !important;
    z-index: 10;
  }

  /* Mobile optimizations */
  @media (max-width: 991px) {
    th.sticky {

      z-index: 2 !important;
    }

    td.sticky {
      background-color: white !important;
      z-index: 10 !important;
    }

    /* Force proper background colors */
    thead th.sticky {
      box-shadow: 2px 0 4px rgba(0, 0, 0, 0.1);
    }

    tbody td.sticky {
      box-shadow: 2px 0 4px rgba(0, 0, 0, 0.05);
    }

    /* Adjust padding for mobile */
    th,
    td {
      padding: 0.5rem 0.25rem;
    }

    /* Hide the name column on mobile */
    .hidden-mobile {
      display: none;
    }
  }
  .width-table {
   min-width: 150px;
  }
  @media (max-width: 640px) {
  .responsive-width {
    width: 100%;
  }
}
