#loadingScreen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.70);
  backdrop-filter: blur(16px);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#loadingText {
  color: #051049;
  font-size: 29px;
  font-style: normal;
  font-weight: 500;
  line-height: 38px;
}

.loading-step {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.step-image {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

#progressBarContainer {
  width: 100%;
  max-width: 600px;
  height: 40px;
  border-radius: 20px;
  background: #F2F2F2;
  margin-top: 28px;
  border: 1px solid #D9D9D9;
  overflow: hidden;
}

#progressBar {
  height: 40px;
  background: #33CEAD;
  width: 0%;
  transition: width 0.5s ease-in-out;
}

#property-address.error {
  border: 1px solid #e74c3c !important;
  color: #e74c3c;
}

#property-address.error::placeholder {
  color: #e74c3c;
  opacity: 1;
}

/* State Not Served Modal */
.state-not-served-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.state-not-served-modal-content {
  background: #ffffff;
  border-radius: 12px;
  max-width: 600px;
  width: 100%;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.state-not-served-modal-close {
  position: absolute !important;
  top: 16px !important;
  right: 16px !important;
  background: transparent !important;
  border: none !important;
  cursor: pointer !important;
  padding: 8px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #666 !important;
  transition: all 0.2s ease !important;
  z-index: 1 !important;
  border-radius: 50% !important;
}

.state-not-served-modal-close:hover {
  color: #051049 !important;
  background-color: #f2f2f2 !important;
}

.state-not-served-modal-close svg {
  width: 24px;
  height: 24px;
}

.state-not-served-modal-body {
  padding: 40px;
}

.state-not-served-modal-title {
  font-size: 28px;
  font-weight: 600;
  color: #051049;
  margin: 0 0 20px 0;
  line-height: 1.3;
}

.state-not-served-modal-title .modal-yet-text {
  color: #2EB99B !important;
}

.state-not-served-modal-text {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
  margin: 0 0 16px 0;
}

.state-not-served-modal-text #modal-state-name-text {
  color: #051049 !important;
  font-weight: 600 !important;
}

.state-not-served-modal-text:last-of-type {
  margin-bottom: 32px;
}

.state-not-served-modal-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.state-not-served-modal-button {
  display: inline-block !important;
  padding: 12px 40px !important;
  border-radius: 24px !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  text-align: center !important;
  transition: all 0.3s ease !important;
  border: 2px solid transparent !important;
  cursor: pointer !important;
  min-width: 140px !important;
}

.state-not-served-modal-button-primary {
  background: #33CEAD !important;
  color: #ffffff !important;
  border-color: #33CEAD !important;
}

.state-not-served-modal-button-primary:hover {
  background: #2ab896 !important;
  border-color: #2ab896 !important;
  color: #ffffff !important;
  text-decoration: none !important;
}

.state-not-served-modal-button-secondary {
  background: transparent !important;
  color: #051049 !important;
  border-color: #051049 !important;
}

.state-not-served-modal-button-secondary:hover {
  background: #051049 !important;
  color: #ffffff !important;
  text-decoration: none !important;
}

@media (max-width: 640px) {
  .state-not-served-modal-body {
    padding: 32px 24px;
  }

  .state-not-served-modal-title {
    font-size: 24px;
  }

  .state-not-served-modal-actions {
    flex-direction: column;
  }

  .state-not-served-modal-button {
    width: 100%;
  }
}
