body{
  margin: 0;
  padding: 0;
}

.toast-common{
  display: inline-block;
  position: fixed;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  padding: 10px;
  border-radius: 5px;
  z-index: 2000;
}

.toast-message{
  background-color: darkgreen;
}

.toast-error-message{
  background-color: darkred;
}

.site-primary-btn{
    background-color: #FFC107;
}

.site-primary-btn:hover{
    background-color: rgb(255, 193, 7, 0.85);
}

.site-primary-btn-outline{
    border: 1px solid #FFC107;
}

.site-primary-btn-outline:hover{
    background-color: #FFC107;
}

.text-site{
  color: #FFC107;
}

.embossed-outline {
  border: 2px solid #FFC107;
  border-radius: 0.5em;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.bg-site{
  background-color: #FFC107;
}

.navbar-brand-site{
  background-color: white;
  border-radius: 5px;
}

.site-pagination nav > div > div {
    margin-right: 10px;
}

.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #bbb; /* Inactive: light gray */
    opacity: 1;
    border: none;
    margin: 0 4px;
}

.carousel-indicators .active {
    background-color: #0d6efd; /* Active: Bootstrap primary (blue) */
}

@media screen and (max-width: 768px) {
  #testimonialCarousel {
    display: none;
  }

  #testimonialCarouselMobile {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  #testimonialCarousel {
    display: block;
  }

  #testimonialCarouselMobile {
    display: none;
  }
}

.gender-option-selected {
    border: 2px solid #FFC107;
    background-color: #FFC107;
    border-radius: 5px;
    color:white;
}