/* Construction Message Block - Frontend Styles */

.synpact-construction-message {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4vh 2vw;
  text-align: center;
}

.construction-loader {
  width: 80px;
  height: 80px;
  border: 8px solid rgba(174, 39, 97, 0.2);
  border-top: 8px solid #ae2761;
  border-radius: 50%;
  animation: spin 2s linear infinite;
  margin-bottom: 3vh;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.construction-text {
  font-family: "PT Serif", Georgia, "Times New Roman", serif;
  font-size: clamp(18px, 2vw, 24px);
  color: #ae2761;
  margin: 0;
  line-height: 1.5;
  max-width: 600px;
}

@media (max-width: 768px) {
  .synpact-construction-message {
    padding: 3vh 4vw;
  }

  .construction-loader {
    width: 60px;
    height: 60px;
    border-width: 6px;
    margin-bottom: 2vh;
  }

  .construction-text {
    font-size: 16px;
  }
}
