.bidzone-panels::-webkit-scrollbar {
  height: 10px; /* Set the height of the horizontal scrollbar */
}

.bidzone-panels::-webkit-scrollbar-track {
  background: #ecf6fd; /* Light blue background for the scrollbar track */
  border-radius: 10px; /* Rounded corners for track */
}

.bidzone-panels::-webkit-scrollbar-thumb {
  background-color: #5ea4d3; /* Blue color for the scrollbar thumb */
  border-radius: 10px; /* Rounded corners for thumb */
  border: 2px solid #ecf6fd; /* Adds space around the thumb for a better look */
}

.bidzone-panels {
  display: flex;
  flex-direction: row;
  width: 100%;
  margin-top: 8px;
  margin-bottom: 15px;
  overflow-x: auto;
  white-space: nowrap;
  margin-top: 8px;
  margin-bottom: 8px;
  margin-right: 6px;
  margin-left: 2px;
  padding: 6px;
}

.item-category {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.bidzone-content {
  display: flex;
  flex-direction: column;
  padding: 20px;
  background-color: white; /* Contrast with the light blue background */
  border-radius: 8px;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
  max-width: 1200px;
  margin: 0 auto;
}

.item-title {
  font-family: 'Nunito Sans', sans-serif;
  color: #3498db; /* Consistent blue color for titles */
  font-size: 1.2rem;
  margin-bottom: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.item-snippet {
  font-family: 'Nunito Sans', sans-serif;
  color: #575757;
  font-size: 0.9rem;
  margin: 2px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bidzone-items {
  border: 1px solid #3498db; /* Consistent blue border */
  background-color: #ecf6fd; /* Light blue background for each item */
  padding: 0.4rem;
  margin-right: 5px;
  width: fit-content;
  min-width: 250px;
  max-width: 300px;
  height: fit-content;
  min-height: 120px;
  border-radius: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.1);
}

.bidzone-items:hover {
  transform: translateY(-3px); /* Slight lift effect on hover */
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2); /* Shadow intensifies on hover */
}

h3.item-title {
  margin: 0;
}

h3.item-title::after {
  content: "";
  display: block;
  width: 150px;
  height: 2px;
  background-color: #3498db; /* Blue underline effect */
  margin-top: 5px;
}

@media (max-width: 768px) {
  .bidzone-content {
    padding: 10px;
  }

  .bidzone-panels {
    padding: 4px;
    margin: 4px 0;
  }

  .bidzone-items {
    min-width: 200px;
    max-width: 250px;
    min-height: 100px;
    padding: 0.3rem;
    font-size: 0.85rem;
  }

  .item-title {
    font-size: 1rem;
  }

  .item-snippet {
    font-size: 0.8rem;
  }

  h3.item-title::after {
    width: 100px;
  }
}
