/* Position arrows over slider */
.owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  color: white !important;
}

.owl-nav .owl-prev {
  left: -10px;
}
.owl-nav .owl-next {
  right: -10px;
}

/* Hover effect */
.owl-nav button:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* Dots */
/* Container for dots */
.owl-dots {
  position: relative;
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 0.5rem; /* space between dots */
  z-index: 50; /* make sure above background */
}

/* Each dot */
.owl-dot {
  width: 12px;
  height: 12px;
  background-color: rgba(
    255,
    255,
    255,
    0.6
  ) !important; /* semi-transparent white */
  border-radius: 9999px; /* full circle */
  transition: all 0.3s;
}

/* Active dot */
.owl-dot.active {
  background-color: #ffffff !important; /* fully visible white */
}

/* Make sure dots are visible over dark overlay */
.owl-carousel {
  position: relative;
}
