/*
 * Reachify compact owner controls
 * Design contract: normal-size choice glyphs, 44px-friendly labelled rows,
 * solid Reachify blue focus/checked state, neutral surfaces, no shadows.
 */
body .wpn-owner-form input[type="checkbox"],
body .wpn-owner-form input[type="radio"] {
  display: inline-block !important;
  box-sizing: border-box !important;
  flex: 0 0 16px !important;
  width: 16px !important;
  height: 16px !important;
  min-width: 16px !important;
  min-height: 16px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 1px solid #98a2b3 !important;
  border-radius: 4px !important;
  background: #ffffff !important;
  accent-color: #0875c1 !important;
  box-shadow: none !important;
  vertical-align: middle !important;
}

body .wpn-owner-form .owner-feature-grid label,
body .wpn-owner-form .owner-feature-checks label {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  min-height: 44px !important;
  padding: 8px 10px !important;
  cursor: pointer;
}

body .wpn-owner-form input[type="checkbox"]:focus-visible,
body .wpn-owner-form input[type="radio"]:focus-visible {
  outline: 2px solid #0875c1 !important;
  outline-offset: 2px !important;
}

@media (max-width: 640px) {
  body .wpn-owner-form .owner-feature-grid label,
  body .wpn-owner-form .owner-feature-checks label {
    min-height: 44px !important;
  }
}
