.hero-gradient-bg {
  background: linear-gradient(
    180deg,
    rgba(235, 203, 240, 0.4) 0%,
    rgba(200, 190, 250, 0.4) 100%
  );
  padding-bottom: 2rem;
}
.meeting-card-gradient {
  background: linear-gradient(145deg, #fceaff 0%, #ebf1ff 100%);
}

.off-canvas-menu {
  transition: transform 0.3s ease-in-out;
  transform: translateY(100%);
}
.off-canvas-menu.is-open {
  transform: translateY(0);
}
.off-canvas-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
}

.off-canvas-menu.is-open {
  max-height: 300px;
}

#fullPageLoader {
  position: fixed;
  inset: 0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}
/* From Uiverse.io by AbanoubMagdy1 */
.loader {
  --loadw: 2rem;
  width: var(--loadw);
  height: var(--loadw);
  position: relative;
  animation: spin988 2s linear infinite;
}

.loader .circle {
  --color: #5d6af1;
  --loadw: 0.8rem;
  width: var(--loadw);
  height: var(--loadw);
  background-color: #5d6af1;
  border-radius: 50%;
  position: absolute;
}

.loader .circle:nth-child(1) {
  top: 0;
  left: 0;
}

.loader .circle:nth-child(2) {
  top: 0;
  right: 0;
}

.loader .circle:nth-child(3) {
  bottom: 0;
  left: 0;
}

.loader .circle:nth-child(4) {
  bottom: 0;
  right: 0;
}

@keyframes spin988 {
  0% {
    transform: scale(1) rotate(0);
  }

  20%,
  25% {
    transform: scale(1.3) rotate(90deg);
  }

  45%,
  50% {
    transform: scale(1) rotate(180deg);
  }

  70%,
  75% {
    transform: scale(1.3) rotate(270deg);
  }

  95%,
  100% {
    transform: scale(1) rotate(360deg);
  }
}

.legal-content p,
.legal-content h1,
.legal-content h2,
.legal-content h3,
.legal-content h4,
.legal-content h5,
.legal-content h6,
.legal-content ul,
.legal-content li {
  color: #000;
  margin-bottom: 10px !important;
}

.legal-content strong {
  font-weight: 600;
  color: #232323 !important;
}
.legal-content h1 {
  font-weight: 500;
  margin-top: 15px !important;
  margin-bottom: 5px !important;
  font-size: 28px;
}
.legal-content h2 {
  font-weight: 500;
  margin-top: 15px !important;
  margin-bottom: 5px !important;
  font-size: 24px;
}
.legal-content h3 {
  font-weight: 500;
  margin-top: 15px !important;
  margin-bottom: 5px !important;
  font-size: 20px;
}
.legal-content h4 {
  font-weight: 500;
  margin-top: 15px !important;
  margin-bottom: 5px !important;
  font-size: 18px;
}
.legal-content h5 {
  font-weight: 500;
  margin-top: 15px !important;
  margin-bottom: 5px !important;
  font-size: 16px;
}
.legal-content h6 {
  font-weight: 500;
  margin-top: 15px !important;
  margin-bottom: 5px !important;
  font-size: 15px;
}
.legal-content p,
.legal-content li {
  font-size: 15px;
  margin-bottom: 2px !important;
  color: #232323 !important;
}

/* Optional: list styling */
.legal-content ul {
  padding-left: 20px; /* space for bullets */
  list-style-type: disc; /* default bullet style */
}
/* END Dynamic Page CSS Injector */

 .select2-container .select2-selection--single {
        height: 48px !important;
        padding: 8px 10px;
        border: 1px solid #c7d2fe !important;
        border-radius: 8px !important;
        background-color: rgba(239, 246, 255, 0.4) !important; /* Tailwind bg-blue-50/30 */
    }
    .select2-selection__arrow { top: 10px !important; }
    .select2-container { width: 100% !important; }