/* Slider */
#myCarousel .slider-control {
  width: 45px;
  height: 45px;
  background-color: rgba(0, 0, 0, 0.4); /* semi-transparent black */
  border: none;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
  display: none;
  justify-content: center;
  align-items: center;
}

#myCarousel:hover .slider-control {
  display: flex;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-size: 60% 60%;
  background-repeat: no-repeat;
  filter: brightness(200%); /* Make arrows brighter */
}

.carousel-control-prev {
  left: 15px;
}

.carousel-control-next {
  right: 15px;
}


/* Make arrows brighter */
.topbar-custom {
  background-color: #038EE0;
  position: fixed;
  top: 0;
  width: 100%;
  height: 50px;
  z-index: 1050;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
