.loading-spinner {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  z-index: 99999;
  opacity: 1;
  visibility: visible;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s;
}

.loader-container {
  width: 320px;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.representation-people {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
  width: 100%;
  max-width: 280px;
  margin: 0 auto 20px auto;
  padding: 20px 0;
}

.person-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: transform 0.4s ease, opacity 0.4s ease;
  opacity: 0;
  transform: scale(0.8);
}

.explanation-text {
  width: 100%;
  text-align: center;
  margin-top: 2rem;
}

.explanation-text p {
  width: 100%;
  text-align: center;
  margin: 0 auto;
}

.highlighted-text {
  color: #FF7E28;
  font-weight: bold;
}

.regular-text {
  color: #64748B;
  font-weight: bold;
}
