/* Argyle Utility Outage Reporter — matches argylewi.gov Poppins/Neve theme */
.aur-wrap {
  width: 100%;
  font-family: Poppins, sans-serif;
  color: #494949;
}

.aur-map-heading {
  font-size: 1.2rem;
  font-weight: 700;
  color: #494949;
  margin: 0 0 .6rem;
}

.aur-map-section {
  width: 100%;
}

.aur-map {
  width: 100%;
  height: 480px;
  border-radius: 7px;
  overflow: hidden;
}

.aur-report-toggle {
  margin: 1.25rem 0;
}

/* Form */
.aur-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

/* Two-column grid rows */
.aur-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: start;
}

/* Field wrapper */
.aur-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/* Labels */
.aur-form label,
.aur-field-label {
  display: block;
  font-weight: 700;
  font-size: 16px;
  color: #494949;
  font-family: Poppins, sans-serif;
}

.aur-required {
  color: #c0392b;
}

/* Inputs */
.aur-form input[type="text"],
.aur-form input[type="email"],
.aur-form input[type="tel"],
.aur-form textarea,
.aur-form select {
  display: block;
  width: 100%;
  padding: 11px 15px;
  border: 1px solid #dadadd;
  border-radius: 7px;
  background: #fff;
  color: #606266;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  box-sizing: border-box;
  transition: border-color .15s;
}

.aur-form input:focus,
.aur-form textarea:focus {
  outline: none;
  border-color: #2f3f58;
}

/* Inline radio options — sit at input height */
.aur-radio-inline {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem 1.1rem;
  padding: 10px 0;
  align-items: center;
}

.aur-radio-inline label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
  font-size: 14px;
  color: #494949;
  cursor: pointer;
}

/* Primary button */
.aur-button {
  display: inline-block;
  padding: 13px 24px;
  background: #2f3f58;
  color: #fff;
  border: none;
  border-radius: 15px;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s;
}
.aur-button:hover { background: #1e2d42; }

/* Secondary / ghost button */
.aur-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  background: transparent;
  color: #2f3f58;
  border: 2px solid #2f3f58;
  border-radius: 15px;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s, color .15s;
}
.aur-secondary:hover { background: #2f3f58; color: #fff; }

/* Message */
.aur-message { font-size: 14px; min-height: 1.2rem; color: #2f3f58; }
.aur-message.aur-error { color: #c0392b; }
.aur-message.aur-success { color: #27ae60; }

/* Map popups */
.aur-popup { min-width: 180px; font-family: Poppins, sans-serif; font-size: 13px; color: #494949; }
.aur-popup-address { font-weight: 700; margin-bottom: 2px; }
.aur-popup-time { color: #888; font-size: 12px; }
.aur-popup-description { margin-top: .35rem; }

@media (max-width: 640px) {
  .aur-grid { grid-template-columns: 1fr; }
  .aur-map { height: 320px; }
}
