.slider-module {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 20px;
}
.slides-module {
  display: flex;
  transition: transform 0.5s ease-in-out;
  height: 100%;
}
.slide-module {
  flex: 0 0 100%;
  height: 100%;
}
.slide-module img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0,0,0,0.5);
  color: white;
  border: none;
  font-size: 24px;
  padding: 10px 15px;
  cursor: pointer;
  z-index: 10;
}
.nav-button:hover {
  background-color: rgba(0,0,0,0.7);
}
.prev {
  left: 10px;
}
.next {
  right: 10px;
}
.thumbnails {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.thumbnail img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border 0.3s;
  border-radius: 4px;
}
.thumbnail.active img {
  border: 3px solid #007bff;
}
