.manual-slider {
  position: relative;
  width: 90%;
  margin: 0 auto;
  overflow: hidden; /* Hide any content that overflows the slider */
}

.manual-slides {
  display: flex;
  overflow-x: auto; /* Allow horizontal scrolling */
  scroll-snap-type: x mandatory;
  scrollbar-width: none; /* Hide scrollbar for Firefox */
  -ms-overflow-style: none; /* Hide scrollbar for Internet Explorer and Edge */
  transition: transform 0.5s ease; /* Add smooth animation to sliding */
}

.manual-slides::-webkit-scrollbar {
  display: none; /* Hide scrollbar for Chrome, Safari, and Opera */
}

.manual-slide {
  flex: 0 0 calc(100% / 4); /* Divide the width into 3 equal parts */
  margin-right: 10px; /* Add margin between slides */
  /*padding: 5px;
  box-sizing: border-box;
  border: 1px solid #dbc39c;*/
	border:1px solid #CCCCCC;
	padding:5px;
	border-radius:5px;
	box-shadow: 6px 6px 10px 10px #fdfefd;
  text-align: center;
  scroll-snap-align: center;
}

/* Remove margin for the last slide to avoid extra space at the end */
.manual-slide:last-child {
  margin-right: 0;
}

.manual-button {
  background-color: #333333;
  color: white;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
  font-size: 24px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.manual-button:hover {
  opacity: 1;
}

.manual-slider .prev,
.manual-slider .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.manual-slider .prev {
  left: 0;
}

.manual-slider .next {
  right: 0;
}

/* Mobile view: Single column */
@media (max-width: 768px) {
  .manual-slider {
    width: 100%;
  }

  .manual-slide {
    flex: 0 0 100%; /* Show only one slide at a time on mobile */
    margin-right: 0; /* Remove margin between slides for single-column view */
  }
}
