/**
 * @file
 * Contact page custom styles.
 */

.contact-page {
  /* Additional custom styles if needed */
}

/* Webform field labels */
.contact-page .webform-submission-form label {
  @apply block text-sm font-semibold text-gray-700 mb-2;
}

/* Form wrapper */
.contact-page .webform-submission-form {
  @apply space-y-4;
}

/* Error messages */
.contact-page .form-item--error-message {
  @apply text-red-600 text-sm mt-1;
}

/* Success message */
.contact-page .messages--status {
  @apply bg-green-50 border border-green-200 text-green-800 px-4 py-3 rounded-lg mb-6;
}

/* Map container */
#contact-map {
  min-height: 300px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  #contact-map {
    height: 250px !important;
  }
}
