/* These styles are generated from project.scss. */

/* Rich Text Video Alignment Styles */
.rich-text-video {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1rem 0;
  border-radius: 8px;
}

.rich-text-video--left {
  float: left;
  margin-right: 1.5rem;
  margin-bottom: 1rem;
  max-width: 50%;
  clear: left;
}

.rich-text-video--right {
  float: right;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
  max-width: 50%;
  clear: right;
}

.rich-text-video--full-width {
  width: 100%;
  max-width: 100%;
  clear: both;
}

/* Clear floats after richtext content */
.richtext::after {
  content: "";
  display: table;
  clear: both;
}

.alert-debug {
  color: black;
  background-color: white;
  border-color: #d6e9c6;
}

.alert-error {
  color: #b94a48;
  background-color: #f2dede;
  border-color: #eed3d7;
}

.swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
  position: relative !important;
  /* top: 100px !important; */
  margin-top: 20px !important;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 16px !important;
  border-radius: 50% !important;
  background-color: #1b8354 !important;
  height: 16px !important;
}
.swiper-pagination-bullet {
  width: 16px !important;
  border-radius: 50% !important;
  background-color: #cfd5e0 !important;
  height: 16px !important;
}
@layer utilities {
  .swiper-slide:last-child {
    height: auto !important;
  }
  
}

.custom-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
}

/* Voice Search Recording Animation */
.voice-search-btn.recording {
  color: #ef4444 !important;
  animation: pulse-recording 1.5s ease-in-out infinite;
}

.voice-search-btn.recording path {
  fill: #ef4444 !important;
}

@keyframes pulse-recording {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.15);
    opacity: 0.8;
  }
}