.slideshow-container {
  position: relative;
  width: 100%;
  max-width: none;
  height: 685px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}

.nav-container {
  position: absolute;
  top: 0;
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10px;
  background-color: #f0f0f0;
  z-index: 10;
}

.slide {
  position: absolute;
  top: 50px;
  width: 100%;
  height: calc(100% - 100px);
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  display: none;
  flex-direction: column;
}

.slide.active {
  display: flex;
  opacity: 1;
}

.slide-image-container {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  width: 100%;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.image-title {
  width: 100%;
  background-color: #f0f0f0;
  color: #333;
  padding: 10px;
  text-align: center;
  font-weight: bold;
}

.dots-container {
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
  background-color: transparent;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: #555;
}