/* ===============================
=       Custom SVG Arrows      =
=============================== */

.slick-prev-custom, .slick-next-custom {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  background-color: rgba(0, 118, 64, 0.15);
  border: none;
  border-radius: 50%;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.slick-prev-custom {
  left: 10px;
}

.slick-next-custom {
  right: 10px;
}

.slick-prev-custom svg, .slick-next-custom svg {
  width: 24px;
  height: 24px;
  fill: #007640;
  transition: fill 0.3s ease;
}

.slick-prev-custom:hover, .slick-next-custom:hover {
  background-color: rgba(0, 118, 64, 0.25);
}

.slick-prev-custom:hover svg, .slick-next-custom:hover svg {
  fill: #007640;
}

/* ===============================
=         Slick Dots           =
=============================== */

.slick-dots {
  position: absolute;
  bottom: -25px;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}

.slick-dots li {
  display: inline-block;
  margin: 0 5px;
}

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  width: 10px;
  height: 10px;
  background-color: transparent;
  border: 2px solid #ccc;
  border-radius: 50%;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slick-dots li button:hover, .slick-dots li button:focus {
  border-color: #007640;
  outline: none;
}

.slick-dots li.slick-active button {
  background-color: #007640;
  border-color: #007640;
}

/* ===============================
=      Optional Image Fixes     =
=============================== */

.campus-slider img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* Optional spacing between slides */

.campus-slider .slick-slide {
  padding: 0 10px;
}

