:root {
  --bg: #f7f8fc;
  --panel: #ffffff;
  --ink: #15161f;
  --muted: #656b7a;
  --line: #e7e9f2;
  --brand: #75b8ff;
  --brand-dark: #a29bfe;
  --danger: #15161f;
  --danger-bg: rgba(254, 119, 118, 0.16);
  --focus: #fdcb6e;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

body.meeting-open #appHeader {
  display: none !important;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 0 0, rgba(253, 203, 110, 0.18), transparent 32rem),
    radial-gradient(circle at 100% 0, rgba(162, 155, 254, 0.16), transparent 34rem),
    var(--bg);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.45;
  -webkit-text-size-adjust: 100%;
}

.page {
  width: min(1680px, calc(100% - 32px));
  margin: 0 auto;
  padding: 32px 0;
}

.topbar {
  align-items: center;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 24px;
}

h1,
h2,
p {
  margin: 0;
}

h1 {
  font-size: 34px;
  line-height: 1.1;
}

h2 {
  font-size: 20px;
  margin-bottom: 14px;
}

.eyebrow {
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.muted {
  color: var(--muted);
}

.property-list-status {
  margin-bottom: 14px;
}

.panel,
.alert {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
}

.alert {
  background: var(--danger-bg);
  border-color: rgba(254, 119, 118, 0.52);
  color: var(--danger);
  margin-bottom: 18px;
}

.button,
button.button {
  align-items: center;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-weight: 800;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  text-decoration: none;
}

.button.primary {
  background: var(--brand);
  border-color: var(--brand);
}

.button.primary:hover {
  background: var(--brand-dark);
}

.button.danger {
  background: #ffe1e6;
  border-color: rgba(254, 119, 118, 0.52);
}

.button-row,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.autosave-status {
  align-self: center;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.autosave-status.saving {
  color: #2563eb;
}

.autosave-status.saved {
  color: #2f7c5f;
}

.autosave-status.error {
  color: #b83737;
}

.form-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-grid .full {
  grid-column: 1 / -1;
}

label {
  color: var(--muted);
  display: grid;
  font-weight: 700;
  gap: 8px;
}

.checkbox-label {
  align-items: center;
  color: var(--ink);
  display: flex;
  gap: 10px;
}

.checkbox-label input {
  min-height: auto;
  width: auto;
}

.switch-control {
  align-items: center;
  display: flex;
  min-height: 40px;
}

.switch-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.switch-control input {
  height: 1px;
  opacity: 0;
  position: absolute;
  width: 1px;
}

.switch-control label {
  align-items: center;
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  font-weight: 800;
  gap: 10px;
}

.switch-track {
  background: #d8dce8;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: inline-flex;
  height: 24px;
  position: relative;
  transition: background 0.15s ease, border-color 0.15s ease;
  width: 44px;
}

.switch-track::after {
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(21, 22, 31, 0.24);
  content: "";
  height: 18px;
  left: 2px;
  position: absolute;
  top: 2px;
  transition: transform 0.15s ease;
  width: 18px;
}

.switch-control input:checked + label .switch-track {
  background: var(--brand);
  border-color: var(--brand);
}

.switch-control input:checked + label .switch-track::after {
  transform: translateX(20px);
}

input,
select,
textarea {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  font: inherit;
  min-height: 40px;
  padding: 8px 10px;
  width: 100%;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

.form-actions {
  display: flex;
  justify-content: flex-end;
}

.table-toggle {
  align-items: center;
  color: var(--ink);
  display: flex;
  flex-wrap: nowrap;
  font-weight: 800;
  gap: 8px;
  margin-bottom: 12px;
  overflow-x: auto;
  white-space: nowrap;
}

.table-meta-row {
  margin-bottom: 12px;
}

.table-toggle input,
.lock-toggle input,
.radio-stack input,
.inline-checkbox input {
  min-height: auto;
  width: auto;
}

.inline-checkbox {
  align-items: center;
  color: var(--ink);
  display: inline-flex;
  flex-shrink: 0;
  gap: 8px;
  margin-left: 14px;
  white-space: nowrap;
}

.inline-checkbox.no-margin {
  margin-left: 0;
}

.quorum-badge {
  color: var(--danger);
  flex-shrink: 0;
  font-weight: 900;
  margin-left: 14px;
  white-space: nowrap;
}

.row-legend {
  align-items: center;
  color: var(--muted);
  display: inline-flex;
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 800;
  gap: 10px;
  margin-left: 14px;
  white-space: nowrap;
}

.row-legend span {
  align-items: center;
  display: inline-flex;
  gap: 5px;
}

.legend-swatch {
  border: 1px solid rgba(21, 22, 31, 0.18);
  border-radius: 3px;
  display: inline-block;
  height: 12px;
  width: 12px;
}

.legend-green {
  background: #d9f4df;
}

.legend-yellow {
  background: #fff3a3;
}

.legend-red {
  background: #ffe1e6;
}

.nominations-panel {
  margin-top: 18px;
  margin-bottom: 18px;
}

.open-ballot-actions,
.open-ballot-mapping,
.open-ballot-votes {
  margin-top: 18px;
}

.open-ballot-vote-table th[data-open-ballot-candidate] {
  min-width: 160px;
}

.meeting-opening-layout {
  align-items: flex-start;
  border-bottom: 1px solid var(--line);
  display: grid;
  column-gap: 80px;
  grid-template-columns: max-content minmax(420px, 1fr);
  margin: 0 0 14px;
  padding: 0 0 14px;
}

.meeting-opening-checklist {
  color: var(--ink);
  font-weight: 700;
  margin: 0;
}

.meeting-opening-checklist > div {
  display: grid;
  grid-template-columns: 32px max-content;
  line-height: 1.55;
}

.meeting-opening-checklist > div > span:first-child {
  padding-right: 6px;
}

.meeting-opening-checklist > .meeting-opening-substep {
  margin-left: 32px;
}

.owner-display-controls {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  font-weight: 800;
  gap: 10px;
}

.owner-display-controls .inline-checkbox {
  margin-left: 0;
  white-space: nowrap;
}

.open-ballot-vote-table tbody td:nth-child(n+8) {
  left: auto;
  position: static;
  z-index: auto;
}

.open-ballot-vote-table thead th:nth-child(n+8) {
  left: auto;
  z-index: 2;
}

.subhead {
  color: var(--muted);
  display: block;
  font-size: 11px;
  margin-top: 3px;
}

.nominee-vote-option {
  align-items: center;
  color: var(--ink);
  display: inline-flex;
  font-weight: 700;
  gap: 8px;
  white-space: nowrap;
}

.nominee-vote-option input {
  min-height: auto;
  width: auto;
}

.nominations-table {
  min-width: 760px;
}

.nominations-table th {
  background: #111111;
  color: #ffffff;
  text-transform: uppercase;
}

.nominations-table td {
  background: #ffffff;
  padding: 4px;
}

.nominations-table input,
.nominations-table select {
  border: 0;
  border-radius: 0;
  min-height: 30px;
}

.notes-field {
  margin-top: 16px;
}

.notes-field textarea {
  min-height: 120px;
  resize: vertical;
}

.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

table {
  border-collapse: collapse;
  min-width: 100%;
}

th,
td {
  border-bottom: 1px solid var(--line);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
  white-space: nowrap;
}

#savedMeetings td:first-child {
  max-width: 280px;
  white-space: normal;
  word-break: break-word;
}

.meeting-location-cell {
  max-width: 240px;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}

th {
  background: #eef3f4;
  font-size: 13px;
}

tbody tr:hover {
  background: #fbfcfe;
}

tfoot th,
tfoot td {
  background: #f3f7f7;
  font-weight: 800;
}

.vote-table thead th:nth-child(1),
.vote-table tbody td:nth-child(1),
.vote-table thead th:nth-child(2),
.vote-table tbody td:nth-child(2),
.vote-table thead th:nth-child(3),
.vote-table tbody td:nth-child(3),
.vote-table thead th:nth-child(4),
.vote-table tbody td:nth-child(4),
.vote-table thead th:nth-child(5),
.vote-table tbody td:nth-child(5),
.vote-table thead th:nth-child(6),
.vote-table tbody td:nth-child(6),
.vote-table thead th:nth-child(7),
.vote-table tbody td:nth-child(7) {
  position: sticky;
  z-index: 3;
}

.vote-table thead th:nth-child(1),
.vote-table tbody td:nth-child(1) {
  left: 0;
  max-width: 48px;
  min-width: 48px;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 48px;
}

.vote-table thead th:nth-child(2),
.vote-table tbody td:nth-child(2) {
  left: 48px;
  max-width: 48px;
  min-width: 48px;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 48px;
}

.vote-table thead th:nth-child(3),
.vote-table tbody td:nth-child(3) {
  left: 96px;
  max-width: 190px;
  min-width: 190px;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 190px;
}

.vote-table thead th:nth-child(4),
.vote-table tbody td:nth-child(4) {
  left: 286px;
  max-width: 56px;
  min-width: 56px;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 56px;
}

.vote-table thead th:nth-child(5),
.vote-table tbody td:nth-child(5) {
  left: 342px;
  max-width: 56px;
  min-width: 56px;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 56px;
}

.vote-table thead th:nth-child(6),
.vote-table tbody td:nth-child(6) {
  left: 398px;
  max-width: 126px;
  min-width: 126px;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 126px;
}

.vote-table thead th:nth-child(7),
.vote-table tbody td:nth-child(7) {
  left: 524px;
  max-width: 118px;
  min-width: 118px;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 118px;
}

.vote-table thead th:nth-child(1),
.vote-table thead th:nth-child(2),
.vote-table thead th:nth-child(3),
.vote-table thead th:nth-child(4),
.vote-table thead th:nth-child(5),
.vote-table thead th:nth-child(6),
.vote-table thead th:nth-child(7) {
  background: #e7eff0;
  top: auto;
  z-index: 5;
}

.vote-table tbody td:nth-child(1),
.vote-table tbody td:nth-child(2),
.vote-table tbody td:nth-child(3),
.vote-table tbody td:nth-child(4),
.vote-table tbody td:nth-child(5),
.vote-table tbody td:nth-child(6),
.vote-table tbody td:nth-child(7) {
  background: #ffffff;
}

.vote-table tfoot .tally-label {
  background: #e7eff0;
  left: 0;
  min-width: 48px;
  padding-left: 6px;
  padding-right: 6px;
  position: sticky;
  white-space: nowrap;
  width: 48px;
  z-index: 3;
}

.vote-table tfoot .tally-spacer {
  background: #e7eff0;
}

.vote-table tfoot td:not(.tally-spacer) {
  text-align: center;
  vertical-align: middle;
}

.vote-table tfoot .tally-spacer:nth-child(2) {
  left: 48px;
  min-width: 48px;
  position: sticky;
  z-index: 3;
  width: 48px;
}

.vote-table tfoot .tally-spacer:nth-child(3) {
  left: 96px;
  min-width: 190px;
  position: sticky;
  z-index: 3;
  width: 190px;
}

.vote-table tfoot .tally-spacer:nth-child(4) {
  left: 286px;
  min-width: 56px;
  position: sticky;
  z-index: 3;
  width: 56px;
}

.vote-table tfoot .tally-spacer:nth-child(5) {
  left: 342px;
  min-width: 56px;
  position: sticky;
  z-index: 3;
  width: 56px;
}

.vote-table tfoot .tally-spacer:nth-child(6) {
  left: 398px;
  min-width: 126px;
  position: sticky;
  z-index: 3;
  width: 126px;
}

.vote-table tfoot .tally-spacer:nth-child(7) {
  left: 524px;
  min-width: 118px;
  position: sticky;
  z-index: 3;
  width: 118px;
}

.vote-table.owner-details-expanded thead th:nth-child(1),
.vote-table.owner-details-expanded tbody td:nth-child(1),
.vote-table.owner-details-expanded tfoot .tally-label {
  max-width: 70px;
  min-width: 70px;
  width: 70px;
}

.vote-table.owner-details-expanded thead th:nth-child(2),
.vote-table.owner-details-expanded tbody td:nth-child(2),
.vote-table.owner-details-expanded tfoot .tally-spacer:nth-child(2) {
  left: 70px;
  max-width: 70px;
  min-width: 70px;
  width: 70px;
}

.vote-table.owner-details-expanded thead th:nth-child(3),
.vote-table.owner-details-expanded tbody td:nth-child(3),
.vote-table.owner-details-expanded tfoot .tally-spacer:nth-child(3) {
  left: 140px;
  max-width: 260px;
  min-width: 260px;
  width: 260px;
}

.vote-table.owner-details-expanded thead th:nth-child(4),
.vote-table.owner-details-expanded tbody td:nth-child(4),
.vote-table.owner-details-expanded tfoot .tally-spacer:nth-child(4) {
  left: 400px;
  max-width: 70px;
  min-width: 70px;
  width: 70px;
}

.vote-table.owner-details-expanded thead th:nth-child(5),
.vote-table.owner-details-expanded tbody td:nth-child(5),
.vote-table.owner-details-expanded tfoot .tally-spacer:nth-child(5) {
  left: 470px;
  max-width: 70px;
  min-width: 70px;
  width: 70px;
}

.vote-table.owner-details-expanded thead th:nth-child(6),
.vote-table.owner-details-expanded tbody td:nth-child(6),
.vote-table.owner-details-expanded tfoot .tally-spacer:nth-child(6) {
  left: 540px;
  max-width: 240px;
  min-width: 240px;
  width: 240px;
}

.vote-table.owner-details-expanded thead th:nth-child(7),
.vote-table.owner-details-expanded tbody td:nth-child(7),
.vote-table.owner-details-expanded tfoot .tally-spacer:nth-child(7) {
  left: 780px;
  max-width: 150px;
  min-width: 150px;
  width: 150px;
}

.vote-table.owner-details-expanded tbody td:nth-child(3),
.vote-table.owner-details-expanded tbody td:nth-child(6),
.vote-table.owner-details-expanded tbody td:nth-child(7) {
  overflow: visible;
}

.vote-table.owner-details-expanded tbody td:nth-child(3) .owner-name-input,
.vote-table.owner-details-expanded tbody td:nth-child(6) .compact-input,
.vote-table.owner-details-expanded tbody td:nth-child(7) .compact-input {
  width: 100%;
}

.vote-table.owner-columns-collapsed thead th:nth-child(2),
.vote-table.owner-columns-collapsed tbody td:nth-child(2),
.vote-table.owner-columns-collapsed tfoot .tally-spacer:nth-child(2),
.vote-table.owner-columns-collapsed thead th:nth-child(3),
.vote-table.owner-columns-collapsed tbody td:nth-child(3),
.vote-table.owner-columns-collapsed tfoot .tally-spacer:nth-child(3),
.vote-table.owner-columns-collapsed thead th:nth-child(4),
.vote-table.owner-columns-collapsed tbody td:nth-child(4),
.vote-table.owner-columns-collapsed tfoot .tally-spacer:nth-child(4),
.vote-table.owner-columns-collapsed thead th:nth-child(5),
.vote-table.owner-columns-collapsed tbody td:nth-child(5),
.vote-table.owner-columns-collapsed tfoot .tally-spacer:nth-child(5),
.vote-table.owner-columns-collapsed thead th:nth-child(6),
.vote-table.owner-columns-collapsed tbody td:nth-child(6),
.vote-table.owner-columns-collapsed tfoot .tally-spacer:nth-child(6),
.vote-table.owner-columns-collapsed thead th:nth-child(7),
.vote-table.owner-columns-collapsed tbody td:nth-child(7),
.vote-table.owner-columns-collapsed tfoot .tally-spacer:nth-child(7) {
  display: none;
}

.vote-table.owner-columns-collapsed thead th:nth-child(1),
.vote-table.owner-columns-collapsed tbody td:nth-child(1),
.vote-table.owner-columns-collapsed tfoot .tally-label {
  left: 0;
  max-width: 54px;
  min-width: 54px;
  width: 54px;
}

.vote-table tbody td:nth-child(n+8) {
  text-align: center;
  vertical-align: middle;
}

.vote-table tbody td:nth-child(n+8) .radio-stack {
  justify-items: center;
}

.motion-col {
  min-width: 150px;
  position: relative;
  z-index: 4;
}

.motion-title-field {
  color: var(--ink);
  display: block;
  white-space: nowrap;
}

.motion-title-field span {
  display: block;
  margin-bottom: 4px;
}

.motion-col input[type="text"],
.motion-col select {
  margin-top: 5px;
  min-width: 118px;
}

.motion-status-field,
.motion-status-note-field {
  color: var(--ink);
  display: grid;
  gap: 3px;
  margin-top: 7px;
  text-align: left;
}

.motion-status-field > span,
.motion-status-note-field > span {
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.motion-status-field select,
.motion-status-note-field textarea {
  margin-top: 0;
  min-width: 118px;
  width: 100%;
}

.motion-status-note-field textarea {
  font-size: 12px;
  min-height: 76px;
  resize: vertical;
  white-space: normal;
}

.motion-toggle-row {
  align-items: center;
  display: flex;
  gap: 5px;
  justify-content: space-between;
  margin-top: 6px;
  position: relative;
  z-index: 8;
}

.compact-input {
  min-width: 120px;
}

.owner-name-input {
  display: block;
  min-width: 180px;
}

.status-note {
  color: var(--danger);
  display: block;
  font-size: 12px;
  font-style: italic;
  font-weight: 800;
  margin-top: 6px;
}

.represented-green-row td,
.represented-green-row td:nth-child(1),
.represented-green-row td:nth-child(2),
.represented-green-row td:nth-child(3) {
  background: #d9f4df;
}

.voting-paper-row td,
.voting-paper-row td:nth-child(1),
.voting-paper-row td:nth-child(2),
.voting-paper-row td:nth-child(3) {
  background: #fff3a3;
}

.ineligible-row td,
.ineligible-row td:nth-child(1),
.ineligible-row td:nth-child(2),
.ineligible-row td:nth-child(3) {
  background: #fffafa;
}

.negative-balance-row td,
.negative-balance-row td:nth-child(1),
.negative-balance-row td:nth-child(2),
.negative-balance-row td:nth-child(3) {
  background: #ffe1e6;
}

.lock-toggle {
  align-items: center;
  color: var(--ink);
  display: inline-flex;
  font-size: 12px;
  font-weight: 800;
  gap: 3px;
  margin-top: 6px;
  white-space: nowrap;
}

.motion-toggle-row .lock-toggle {
  margin-top: 0;
}

.motion-batch-vote {
  color: var(--ink);
  display: grid;
  gap: 3px;
  margin-top: 7px;
  text-align: left;
}

.motion-batch-vote > span {
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.motion-batch-vote select {
  margin-top: 0;
  min-width: 118px;
  width: 100%;
}

.motion-batch-vote small {
  color: var(--muted);
  display: block;
  font-size: 10px;
  font-weight: 700;
  min-height: 14px;
  white-space: nowrap;
}

.motion-batch-vote small.is-error {
  color: var(--danger);
}

.radio-stack {
  display: grid;
  gap: 6px;
}

.radio-stack label {
  align-items: center;
  color: var(--ink);
  display: flex;
  font-weight: 400;
  gap: 8px;
  white-space: nowrap;
}

.motion-lapsed-header {
  background: rgba(253, 203, 110, 0.28);
}

.motion-lapsed-cell .radio-stack {
  opacity: 0.45;
  pointer-events: none;
}

.motion-lapsed-cell::after {
  color: var(--muted);
  content: "Motion lapsed";
  display: block;
  font-size: 11px;
  font-weight: 800;
  margin-top: 4px;
}

.empty-copy {
  margin-top: 4px;
}

@media (max-width: 760px) {
  .topbar,
  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .meeting-opening-layout {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 28px;
  }
}

@media (hover: none) and (pointer: coarse) {
  body {
    font-size: 13px;
    line-height: 1.35;
  }

  .page {
    width: min(100% - 12px, 1680px);
    padding: 12px 0 max(12px, env(safe-area-inset-bottom));
  }

  .topbar {
    gap: 12px;
    margin-bottom: 12px;
  }

  .panel,
  .alert {
    padding: 10px;
  }

  h1 {
    font-size: 26px;
  }

  h2 {
    font-size: 17px;
    margin-bottom: 8px;
  }

  .button-row,
  .actions {
    gap: 6px;
  }

  .row-legend {
    font-size: 11px;
    gap: 7px;
    margin-left: 8px;
  }

  .legend-swatch {
    height: 10px;
    width: 10px;
  }

  .button,
  button.button {
    border-radius: 5px;
    min-height: 34px;
    padding: 0 10px;
  }

  input,
  select,
  textarea {
    border-radius: 5px;
    min-height: 32px;
    padding: 5px 7px;
  }

  th,
  td {
    padding: 5px 6px;
  }

  th {
    font-size: 11px;
  }

  .vote-table thead th:nth-child(1),
  .vote-table tbody td:nth-child(1) {
    left: 0;
    max-width: 48px;
    min-width: 48px;
    width: 48px;
  }

  .vote-table thead th:nth-child(2),
  .vote-table tbody td:nth-child(2) {
    left: 48px;
    max-width: 48px;
    min-width: 48px;
    width: 48px;
  }

  .vote-table thead th:nth-child(3),
  .vote-table tbody td:nth-child(3) {
    left: 96px;
    max-width: 190px;
    min-width: 190px;
    width: 190px;
  }

  .vote-table thead th:nth-child(4),
  .vote-table tbody td:nth-child(4) {
    left: 286px;
    max-width: 56px;
    min-width: 56px;
    width: 56px;
  }

  .vote-table thead th:nth-child(5),
  .vote-table tbody td:nth-child(5) {
    left: 342px;
    max-width: 56px;
    min-width: 56px;
    width: 56px;
  }

  .vote-table thead th:nth-child(6),
  .vote-table tbody td:nth-child(6) {
    left: 398px;
    max-width: 126px;
    min-width: 126px;
    width: 126px;
  }

  .vote-table thead th:nth-child(7),
  .vote-table tbody td:nth-child(7) {
    left: 524px;
    max-width: 118px;
    min-width: 118px;
    width: 118px;
  }

  .vote-table tfoot .tally-label {
    min-width: 48px;
    width: 48px;
  }

  .motion-col {
    min-width: 150px;
  }

  .motion-col input[type="text"],
  .motion-col select {
    margin-top: 5px;
    min-width: 118px;
  }

  .compact-input {
    min-width: 88px;
  }

  .owner-name-input {
    min-width: 140px;
  }

  .radio-stack {
    gap: 3px;
  }

  .radio-stack label,
  .lock-toggle {
    gap: 5px;
    min-height: 24px;
  }

  .lock-toggle,
  .status-note {
    font-size: 11px;
  }

  .nominations-panel {
    margin-bottom: 10px;
    margin-top: 10px;
  }

  .nominations-table {
    min-width: 640px;
  }

  .nominations-table input,
  .nominations-table select {
    min-height: 28px;
  }

  .notes-field {
    margin-top: 10px;
  }
}

@media (hover: none) and (pointer: coarse) and (max-width: 760px) {
  body {
    font-size: 14px;
  }

  .button,
  button.button,
  input,
  select,
  textarea {
    min-height: 38px;
  }

  .radio-stack label,
  .lock-toggle {
    min-height: 30px;
  }
}
