/* Align with .btn-primary styling from theme (1).css */
button#nextButton.disabled {
  opacity: 0.7;
  cursor: not-allowed;
  background-color: #002B48; /* Matches .btn-primary:hover */
  border-color: #002B48;
  border-radius: 50px; /* Matches Mircea Changes */
}

/* Ensure error messages match Power Pages styling */
.crmEntityFormView .validator-text {
  color: #a94442; /* Matches theme (1).css */
  font-size: 0.9rem;
  margin-top: 4px;
}

/* Responsive adjustment for error messages */
@media (max-width: 767px) {
  .crmEntityFormView .validator-text {
    font-size: 0.8rem;
    text-align: left;
  }
}