/* Styles for the slider container and images */
#slider-container {
  position: relative;
  max-width: 100%;
  margin: auto;
  overflow: hidden;
}

.slider-img {
  width: 800px;
  height: 400px;
  object-fit: cover; /* Maintain aspect ratio and cover the container */
}

/* Styles for pagination */
#pagination {
  text-align: center;
  margin-top: 10px;
}

.dot {
  height: 10px;
  width: 10px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}

.dot.active {
  background-color: #717171;
}
