/*
 * Inventory Reorder Dashboard — Plugin Stylesheet
 * All classes are prefixed with .inv-reorder- to prevent conflicts.
 * Scoped inside #inv-reorder-app wrapper.
 */

/* ── Full Width Override (Works on all WordPress themes) ─────────────────── */
/* Jis page par shortcode ho, us par theme ka container full width ho jayega  */

/* Common theme content containers — max-width hatao */
.inv-reorder-page-fullwidth .entry-content,
.inv-reorder-page-fullwidth .post-content,
.inv-reorder-page-fullwidth .page-content,
.inv-reorder-page-fullwidth article.page,
.inv-reorder-page-fullwidth .wp-block-post-content,
.inv-reorder-page-fullwidth .site-content,
.inv-reorder-page-fullwidth .content-area,
.inv-reorder-page-fullwidth #content,
.inv-reorder-page-fullwidth #primary,
.inv-reorder-page-fullwidth .container,
.inv-reorder-page-fullwidth .site-inner {
  max-width: 100% !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  float: none !important;
}

/* Page title chupaao (optional — agar title show nahi karni) */
.inv-reorder-page-fullwidth .entry-header .entry-title,
.inv-reorder-page-fullwidth .page-header {
  display: none;
}

/* ── CSS Variables ─────────────────────────────────────────────────────────── */
#inv-reorder-app {
  --ir-bg: #071a2b;
  --ir-panel: #0b243a;
  --ir-panel2: #0f2e49;
  --ir-text: #eaf2ff;
  --ir-muted: #b7c7e6;
  --ir-accent: #3aa0ff;
  --ir-good: #2ecc71;
  --ir-warn: #ffd54a;
  --ir-bad: #ff5c7a;
  --ir-stroke: rgba(255, 255, 255, .10);
  --ir-shadow: 0 18px 45px rgba(0, 0, 0, .35);
  --ir-radius: 18px;
  --ir-radius2: 14px;
  --ir-pad: 16px;
  --ir-font: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Helvetica, Arial;

  box-sizing: border-box;
  font-family: var(--ir-font) !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
  color: var(--ir-text);
  background: radial-gradient(1200px 700px at 15% 10%, rgba(58, 160, 255, .22), transparent 60%),
    radial-gradient(900px 600px at 85% 30%, rgba(255, 213, 74, .16), transparent 55%),
    linear-gradient(180deg, var(--ir-bg), #041321 70%);
  padding: 0 0 24px;
  min-height: 100vh;
  width: 100%;
  display: block;
}

/* Force all text elements inside app to inherit controlled size */
#inv-reorder-app p,
#inv-reorder-app div,
#inv-reorder-app span,
#inv-reorder-app li,
#inv-reorder-app td,
#inv-reorder-app th,
#inv-reorder-app label,
#inv-reorder-app input,
#inv-reorder-app select,
#inv-reorder-app textarea,
#inv-reorder-app button {
  font-family: var(--ir-font) !important;
  font-size: inherit !important;
  line-height: inherit !important;
}


#inv-reorder-app *,
#inv-reorder-app *::before,
#inv-reorder-app *::after {
  box-sizing: border-box;
}

/* ── Header ──────────────────────────────────────────────────────────────────*/
.inv-reorder-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(4, 19, 33, .80);
  border-bottom: 1px solid var(--ir-stroke);
  border-radius: var(--ir-radius) var(--ir-radius) 0 0;
}

.inv-reorder-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 16px;
}

.inv-reorder-topbar {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.inv-reorder-brand {
  display: flex;
  gap: 12px;
  align-items: center;
}

.inv-reorder-logo {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(58, 160, 255, .9), rgba(255, 213, 74, .85));
  box-shadow: 0 14px 30px rgba(0, 0, 0, .35);
  flex-shrink: 0;
}

.inv-reorder-app-title {
  font-size: 18px;
  margin: 0;
  letter-spacing: .2px;
  color: var(--ir-text);
}

.inv-reorder-app-sub {
  font-size: 12px;
  color: var(--ir-muted);
  margin-top: 2px;
}

.inv-reorder-user-info {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.inv-reorder-user-badge {
  font-size: 12px;
  color: var(--ir-muted);
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--ir-stroke);
  border-radius: 999px;
  padding: 6px 12px;
}

/* ── Mode Tabs ────────────────────────────────────────────────────────────── */
.inv-reorder-mode-tabs {
  display: flex;
  gap: 8px;
  align-items: center;
  background: rgba(255, 255, 255, .06);
  border: 1px solid var(--ir-stroke);
  border-radius: 999px;
  padding: 5px;
  flex-wrap: wrap;
}

.inv-reorder-tab-btn {
  border: 1px solid transparent !important;
  background: transparent !important;
  color: var(--ir-muted) !important;
  padding: 9px 14px !important;
  border-radius: 999px !important;
  cursor: pointer !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  letter-spacing: .2px !important;
  transition: all .2s ease !important;
  box-shadow: none !important;
}

.inv-reorder-tab-btn:hover {
  color: var(--ir-text) !important;
  background: rgba(255, 255, 255, .06) !important;
}

.inv-reorder-tab-btn.active {
  background: rgba(58, 160, 255, .18) !important;
  color: var(--ir-text) !important;
  border-color: rgba(58, 160, 255, .35) !important;
}

/* ── Main Content ─────────────────────────────────────────────────────────── */
.inv-reorder-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px;
}

.inv-reorder-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 16px;
}

@media (max-width: 980px) {
  .inv-reorder-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Cards ───────────────────────────────────────────────────────────────── */
.inv-reorder-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .03));
  border: 1px solid var(--ir-stroke);
  border-radius: var(--ir-radius);
  box-shadow: var(--ir-shadow);
  overflow: hidden;
}

.inv-reorder-card-header {
  padding: 14px 16px;
  border-bottom: 1px solid var(--ir-stroke);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  background: rgba(0, 0, 0, .10);
}

.inv-reorder-card-header h2 {
  margin: 0;
  font-size: 15px;
  letter-spacing: .2px;
  color: var(--ir-text);
}

.inv-reorder-card-body {
  padding: 16px;
}

/* ── Pill ────────────────────────────────────────────────────────────────── */
.inv-reorder-pill {
  font-size: 12px;
  color: var(--ir-muted);
  padding: 7px 10px;
  border: 1px solid var(--ir-stroke);
  border-radius: 999px;
  background: rgba(255, 255, 255, .05);
  display: flex;
  gap: 8px;
  align-items: center;
  white-space: nowrap;
}

.inv-reorder-dot {
  width: 9px;
  height: 9px;
  border-radius: 99px;
  background: var(--ir-accent);
  box-shadow: 0 0 0 4px rgba(58, 160, 255, .12);
  flex-shrink: 0;
}

/* ── Form Elements ───────────────────────────────────────────────────────── */
.inv-reorder-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.inv-reorder-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  min-width: 160px;
}

.inv-reorder-field label {
  font-size: 12px;
  color: var(--ir-muted);
  font-weight: 600;
}

#inv-reorder-app#inv-reorder-app#inv-reorder-app input,
#inv-reorder-app#inv-reorder-app#inv-reorder-app input[type="text"],
#inv-reorder-app#inv-reorder-app#inv-reorder-app input[type="number"],
#inv-reorder-app#inv-reorder-app#inv-reorder-app input[type="password"],
#inv-reorder-app#inv-reorder-app#inv-reorder-app select,
#inv-reorder-app#inv-reorder-app#inv-reorder-app textarea,
#inv-reorder-app#inv-reorder-app#inv-reorder-app .inv-reorder-input {
  width: 100% !important;
  padding: 11px 12px !important;
  border-radius: 12px !important;
  border: 1px solid var(--ir-stroke) !important;
  background-color: rgba(255, 255, 255, .08) !important;
  /* Explicit background-color */
  background: rgba(255, 255, 255, .08) !important;
  color: var(--ir-text) !important;
  -webkit-text-fill-color: var(--ir-text) !important;
  /* Forces text color on webkit */
  outline: none !important;
  font-size: 13px !important;
  font-family: var(--ir-font) !important;
  transition: border-color .2s !important;
  box-shadow: none !important;
  box-sizing: border-box !important;
  height: auto !important;
  line-height: normal !important;
  max-width: 100% !important;
}

#inv-reorder-app#inv-reorder-app#inv-reorder-app input:focus,
#inv-reorder-app#inv-reorder-app#inv-reorder-app input[type="text"]:focus,
#inv-reorder-app#inv-reorder-app#inv-reorder-app input[type="number"]:focus,
#inv-reorder-app#inv-reorder-app#inv-reorder-app input[type="password"]:focus,
#inv-reorder-app#inv-reorder-app#inv-reorder-app select:focus,
#inv-reorder-app#inv-reorder-app#inv-reorder-app textarea:focus,
#inv-reorder-app#inv-reorder-app#inv-reorder-app .inv-reorder-input:focus {
  border-color: rgba(58, 160, 255, .80) !important;
}

#inv-reorder-app#inv-reorder-app#inv-reorder-app textarea {
  min-height: 90px !important;
  resize: vertical !important;
}

#inv-reorder-app#inv-reorder-app#inv-reorder-app input::placeholder,
#inv-reorder-app#inv-reorder-app#inv-reorder-app textarea::placeholder,
#inv-reorder-app#inv-reorder-app#inv-reorder-app .inv-reorder-input::placeholder {
  color: rgba(234, 242, 255, .40) !important;
  -webkit-text-fill-color: rgba(234, 242, 255, .40) !important;
  opacity: 1 !important;
}

#inv-reorder-app select option {
  background: #0b243a;
  color: #eaf2ff;
}

/* Selected option should remain visible */
#inv-reorder-app #ir-dashboard-root select option:checked {
  background: #1a4a7a !important;
  color: #eaf2ff !important;
}

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.inv-reorder-btn-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

#inv-reorder-app#inv-reorder-app#inv-reorder-app button,
#inv-reorder-app#inv-reorder-app#inv-reorder-app input[type="button"],
#inv-reorder-app#inv-reorder-app#inv-reorder-app input[type="submit"],
#inv-reorder-app#inv-reorder-app#inv-reorder-app .inv-reorder-btn {
  border: 1px solid rgba(58, 160, 255, .35) !important;
  border-radius: 12px !important;
  padding: 11px 15px !important;
  cursor: pointer !important;
  font-weight: 800 !important;
  font-size: 12px !important;
  letter-spacing: .3px !important;
  color: var(--ir-text) !important;
  -webkit-text-fill-color: var(--ir-text) !important;
  background-color: rgba(58, 160, 255, .20) !important;
  /* Explicit */
  background: rgba(58, 160, 255, .20) !important;
  transition: all .2s ease !important;
  box-shadow: none !important;
  white-space: nowrap !important;
  font-family: var(--ir-font) !important;
  outline: none !important;
  text-transform: none !important;
  line-height: normal !important;
  min-height: 0 !important;
}

#inv-reorder-app#inv-reorder-app#inv-reorder-app button:hover {
  background-color: rgba(58, 160, 255, .32) !important;
  background: rgba(58, 160, 255, .32) !important;
}

#inv-reorder-app#inv-reorder-app#inv-reorder-app button:active {
  transform: translateY(1px) !important;
}

#inv-reorder-app#inv-reorder-app#inv-reorder-app button.inv-reorder-secondary {
  background-color: rgba(255, 255, 255, .07) !important;
  background: rgba(255, 255, 255, .07) !important;
  border-color: var(--ir-stroke) !important;
  color: var(--ir-text) !important;
  -webkit-text-fill-color: var(--ir-text) !important;
}

#inv-reorder-app#inv-reorder-app#inv-reorder-app button.inv-reorder-secondary:hover {
  background-color: rgba(255, 255, 255, .12) !important;
  background: rgba(255, 255, 255, .12) !important;
}

#inv-reorder-app#inv-reorder-app#inv-reorder-app button.inv-reorder-danger {
  background-color: rgba(255, 92, 122, .16) !important;
  background: rgba(255, 92, 122, .16) !important;
  border-color: rgba(255, 92, 122, .32) !important;
  color: #ff5c7a !important;
  -webkit-text-fill-color: #ff5c7a !important;
}

#inv-reorder-app#inv-reorder-app#inv-reorder-app button.inv-reorder-danger:hover {
  background-color: rgba(255, 92, 122, .28) !important;
  background: rgba(255, 92, 122, .28) !important;
}

#inv-reorder-app#inv-reorder-app#inv-reorder-app button.inv-reorder-good {
  background-color: rgba(46, 204, 113, .16) !important;
  background: rgba(46, 204, 113, .16) !important;
  border-color: rgba(46, 204, 113, .32) !important;
  color: #2ecc71 !important;
  -webkit-text-fill-color: #2ecc71 !important;
}

#inv-reorder-app#inv-reorder-app#inv-reorder-app button.inv-reorder-good:hover {
  background-color: rgba(46, 204, 113, .28) !important;
  background: rgba(46, 204, 113, .28) !important;
}

/* ── Table ───────────────────────────────────────────────────────────────── */
.inv-reorder-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 8px;
}

.inv-reorder-table th {
  text-align: left;
  font-size: 11px;
  color: var(--ir-muted);
  padding: 0 10px 6px 10px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.inv-reorder-tr {
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--ir-stroke);
  border-radius: 12px;
}

.inv-reorder-tr td {
  padding: 11px 10px;
  vertical-align: middle;
  font-size: 13px;
  color: var(--ir-text);
}

.inv-reorder-tr td:first-child {
  border-radius: 12px 0 0 12px;
}

.inv-reorder-tr td:last-child {
  border-radius: 0 12px 12px 0;
}

.inv-reorder-tr.inv-reorder-hl {
  outline: 2px solid rgba(255, 213, 74, .50);
  box-shadow: 0 0 0 4px rgba(255, 213, 74, .08);
  background: rgba(255, 213, 74, .08) !important;
}

/* ── Badges ──────────────────────────────────────────────────────────────── */
.inv-reorder-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  border: 1px solid var(--ir-stroke);
  background: rgba(255, 255, 255, .05);
  white-space: nowrap;
  letter-spacing: .4px;
}

.inv-reorder-badge.inv-reorder-good {
  border-color: rgba(46, 204, 113, .35);
  background: rgba(46, 204, 113, .10);
  color: #a8f0c4;
}

.inv-reorder-badge.inv-reorder-warn {
  border-color: rgba(255, 213, 74, .45);
  background: rgba(255, 213, 74, .12);
  color: #fff4bf;
}

.inv-reorder-badge.inv-reorder-bad {
  border-color: rgba(255, 92, 122, .45);
  background: rgba(255, 92, 122, .12);
  color: #ffd0da;
}

/* ── Misc ────────────────────────────────────────────────────────────────── */
.inv-reorder-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.inv-reorder-muteline {
  border-top: 1px solid var(--ir-stroke);
  margin: 14px 0;
}

.inv-reorder-hint {
  font-size: 12px;
  color: var(--ir-muted);
  line-height: 1.5;
}

.inv-reorder-small {
  font-size: 12px;
  color: var(--ir-muted);
}

.inv-reorder-hide {
  display: none !important;
}

/* ── Chart ───────────────────────────────────────────────────────────────── */
.inv-reorder-chart-wrap {
  background: rgba(0, 0, 0, .12);
  border: 1px solid var(--ir-stroke);
  border-radius: 14px;
  padding: 12px;
}

/* ── Section Spacing ─────────────────────────────────────────────────────── */
.inv-reorder-section-gap {
  height: 16px;
}

/* ── Login Form ──────────────────────────────────────────────────────────── */
.inv-reorder-login-wrap {
  max-width: 420px;
  margin: 40px auto;
  padding: 0 16px;
}

.inv-reorder-login-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .03));
  border: 1px solid var(--ir-stroke);
  border-radius: var(--ir-radius);
  box-shadow: var(--ir-shadow);
  overflow: hidden;
}

.inv-reorder-login-header {
  padding: 24px 24px 16px;
  text-align: center;
  border-bottom: 1px solid var(--ir-stroke);
  background: rgba(0, 0, 0, .12);
}

.inv-reorder-login-logo {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(58, 160, 255, .9), rgba(255, 213, 74, .85));
  box-shadow: 0 10px 28px rgba(0, 0, 0, .35);
  margin: 0 auto 14px;
}

.inv-reorder-login-header h2 {
  margin: 0 0 4px;
  font-size: 20px;
  color: var(--ir-text);
}

.inv-reorder-login-header p {
  margin: 0;
  font-size: 13px;
  color: var(--ir-muted);
}

.inv-reorder-login-body {
  padding: 24px;
}

.inv-reorder-login-error {
  background: rgba(255, 92, 122, .14);
  border: 1px solid rgba(255, 92, 122, .30);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 13px;
  color: #ffd0da;
  margin-bottom: 16px;
}

.inv-reorder-login-field {
  margin-bottom: 14px;
}

.inv-reorder-login-field label {
  display: block;
  font-size: 12px;
  color: var(--ir-muted);
  font-weight: 600;
  margin-bottom: 6px;
}

.inv-reorder-login-btn {
  width: 100%;
  padding: 13px !important;
  font-size: 14px !important;
  margin-top: 6px;
  background: linear-gradient(135deg, rgba(58, 160, 255, .4), rgba(58, 160, 255, .25)) !important;
  border-color: rgba(58, 160, 255, .50) !important;
}

/* ── Manage Users Table ──────────────────────────────────────────────────── */
.inv-reorder-users-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 6px;
  margin-top: 8px;
}

.inv-reorder-users-table th {
  text-align: left;
  font-size: 11px;
  color: var(--ir-muted);
  padding: 0 10px 4px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.inv-reorder-users-table td {
  padding: 9px 10px;
  font-size: 13px;
  background: rgba(255, 255, 255, .04);
  color: var(--ir-text);
}

.inv-reorder-users-table td:first-child {
  border-radius: 10px 0 0 10px;
}

.inv-reorder-users-table td:last-child {
  border-radius: 0 10px 10px 0;
}

/* ═══════════════════════════════════════════════════════════════════════════
   MOBILE RESPONSIVE — Tablet & Phone Breakpoints
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Tablet (≤ 768px) ────────────────────────────────────────────────────── */
@media (max-width: 768px) {

  /* Header: stack brand + controls vertically */
  .inv-reorder-topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  /* Tabs + user info on same row, full width */
  .inv-reorder-topbar>div:last-child {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
  }

  /* Tabs: stay HORIZONTAL — no stacking */
  .inv-reorder-mode-tabs {
    flex-wrap: nowrap !important;
    flex: unset;
  }

  .inv-reorder-tab-btn {
    padding: 7px 10px !important;
    font-size: 11px !important;
    white-space: nowrap !important;
  }

  .inv-reorder-app-title {
    font-size: 15px;
  }

  /* Main content */
  .inv-reorder-main {
    padding: 10px;
  }

  /* Card padding tighten */
  .inv-reorder-card-body {
    padding: 12px;
  }

  .inv-reorder-card-header {
    padding: 11px 12px;
  }

  .inv-reorder-card-header h2 {
    font-size: 13px;
  }

  /* Form fields: full width on mobile */
  .inv-reorder-field {
    min-width: 100%;
    flex: none;
    width: 100%;
  }

  .inv-reorder-row {
    flex-direction: column;
    gap: 8px;
  }

  /* Alerts table: horizontal scroll */
  .inv-reorder-table {
    font-size: 12px;
    min-width: 560px;
  }

  .inv-reorder-table th {
    font-size: 10px;
    padding: 0 8px 6px;
  }

  .inv-reorder-tr td {
    padding: 9px 8px;
    font-size: 12px;
  }

  /* Table action buttons smaller */
  .inv-reorder-actions button {
    padding: 7px 9px !important;
    font-size: 11px !important;
  }

  /* Login */
  .inv-reorder-login-wrap {
    margin: 20px auto;
    padding: 0 12px;
  }

  /* Section gap */
  .inv-reorder-section-gap {
    height: 10px;
  }

  /* Report + clear buttons: wrap nicely */
  .inv-reorder-btn-row {
    flex-wrap: wrap;
    gap: 8px;
  }

  .inv-reorder-btn-row>button {
    flex: 1;
    min-width: 120px;
    white-space: normal !important;
    text-align: center !important;
    line-height: 1.3 !important;
  }

  /* Users table horizontal scroll */
  .inv-reorder-users-table {
    min-width: 380px;
  }
}

/* ── Phone (≤ 480px) ─────────────────────────────────────────────────────── */
@media (max-width: 480px) {

  /* Hide subtitle on very small screens */
  .inv-reorder-app-sub {
    display: none;
  }

  /* Logo smaller */
  .inv-reorder-logo {
    width: 36px;
    height: 36px;
  }

  .inv-reorder-app-title {
    font-size: 14px;
  }

  /* Tabs: smaller */
  .inv-reorder-tab-btn {
    padding: 7px 10px !important;
    font-size: 11px !important;
  }

  .inv-reorder-mode-tabs {
    padding: 4px;
  }

  /* Wrap tighter */
  .inv-reorder-wrap {
    padding: 10px 12px;
  }

  .inv-reorder-main {
    padding: 8px;
  }

  .inv-reorder-card-body {
    padding: 10px;
  }

  /* Pill hide on very small */
  .inv-reorder-pill {
    display: none;
  }

  /* Report cards padding */
  .inv-reorder-tr.inv-reorder-hl {
    padding: 10px !important;
  }

  /* Btn row: each button full width on very small phone */
  .inv-reorder-btn-row>button {
    flex: 1;
    min-width: 100px;
    text-align: center;
    justify-content: center;
  }

  /* Report action row stacks */
  .inv-reorder-actions {
    flex-wrap: wrap;
    gap: 6px;
  }

  /* Login form body */
  .inv-reorder-login-body {
    padding: 16px;
  }

  .inv-reorder-login-header {
    padding: 18px 16px 12px;
  }

  .inv-reorder-login-header h2 {
    font-size: 17px;
  }

  /* User badge: shorter */
  .inv-reorder-user-badge {
    font-size: 11px;
    padding: 5px 9px;
  }
}

/* ── Touch: make buttons/selects easier to tap ───────────────────────────── */
@media (pointer: coarse) {
  #inv-reorder-app button {
    min-height: 42px;
  }

  #inv-reorder-app input,
  #inv-reorder-app select,
  #inv-reorder-app textarea {
    font-size: 16px !important;
    /* prevents iOS zoom on focus */
    padding: 12px !important;
  }
}