/* Restore Attendance 1.3.1
   Exact iPhone containment for the native month input in the owner journal.
   Safari may size type="month" as a content-box even when the inherited rule
   says border-box. Removing horizontal padding and reserving 20px guarantees
   that the visible border remains inside the card in both sizing models. */

html body section.dashboard-card.owner-card {
  min-width: 0 !important;
  max-width: 100% !important;
}

html body section.dashboard-card.owner-card > input.month-input {
  display: block !important;
  position: static !important;
  inset: auto !important;
  width: calc(100% - 20px) !important;
  inline-size: calc(100% - 20px) !important;
  min-width: 0 !important;
  min-inline-size: 0 !important;
  max-width: calc(100% - 20px) !important;
  max-inline-size: calc(100% - 20px) !important;
  margin: 0 auto !important;
  padding-inline: 0 !important;
  box-sizing: border-box !important;
  transform: none !important;
  align-self: center !important;
  text-align: center !important;
}

