:root {
  --ptf-blue: #2563eb;
  --ptf-blue-dark: #1d4ed8;
  --ptf-blue-soft: #eff6ff;
  --ptf-ink: #172033;
  --ptf-muted: #64748b;
  --ptf-line: #dbe3ee;
  --ptf-surface: #ffffff;
  --ptf-bg: #f5f7fb;
  --ptf-success: #047857;
  --ptf-success-soft: #ecfdf5;
  --ptf-warning: #9a5b08;
  --ptf-warning-soft: #fff7e6;
  --ptf-danger: #b42318;
  --ptf-danger-soft: #fff1f1;
  --ptf-radius: 16px;
  --ptf-shadow: 0 12px 34px rgba(37, 52, 83, 0.08);
}

.ptf-app-page {
  margin: 0;
  background: var(--ptf-bg);
  color: var(--ptf-ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans JP", sans-serif;
}

.ptf-app-page *,
.ptf-cash *,
.ptf-noriuchi * {
  box-sizing: border-box;
}

.ptf-app-header {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--ptf-line);
  background: rgba(255, 255, 255, 0.97);
  padding: 10px 16px;
}

.ptf-app-brand {
  color: var(--ptf-blue-dark);
  font-size: 20px;
  font-weight: 850;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.ptf-app-nav {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  overflow-x: auto;
  scrollbar-width: none;
}

.ptf-app-nav::-webkit-scrollbar {
  display: none;
}

.ptf-app-nav a {
  flex: 0 0 auto;
  color: #40506a;
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
}

.ptf-app-main {
  min-height: calc(100vh - 124px);
}

.ptf-app-footer {
  padding: 24px 16px;
  color: var(--ptf-muted);
  font-size: 12px;
  text-align: center;
}

.ptf-cash,
.ptf-noriuchi,
.ptools-finance-login {
  width: min(100%, 980px);
  margin: 0 auto;
  padding: 20px 14px 56px;
  color: var(--ptf-ink);
}

.ptf-cash button,
.ptf-cash input,
.ptf-cash select,
.ptf-cash textarea,
.ptf-noriuchi button,
.ptf-noriuchi input,
.ptf-noriuchi select,
.ptf-noriuchi textarea {
  font: inherit;
}

.ptf-hero,
.ptf-section-head {
  margin-bottom: 18px;
}

.ptf-hero h1,
.ptf-section-head h2 {
  margin: 4px 0 8px;
  color: var(--ptf-ink);
  font-size: clamp(25px, 7vw, 38px);
  line-height: 1.25;
  letter-spacing: -0.035em;
}

.ptf-section-head h2 {
  font-size: clamp(23px, 6vw, 32px);
}

.ptf-hero > p:last-child,
.ptf-section-head > div > p:last-child,
.ptf-card-head p {
  margin: 0;
  color: var(--ptf-muted);
  font-size: 14px;
  line-height: 1.7;
}

.ptf-eyebrow {
  margin: 0;
  color: var(--ptf-blue);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ptf-card {
  margin: 0 0 16px;
  border: 1px solid var(--ptf-line);
  border-radius: var(--ptf-radius);
  background: var(--ptf-surface);
  box-shadow: var(--ptf-shadow);
  padding: 18px 15px;
}

.ptf-card h2,
.ptf-card h3 {
  margin: 0;
  color: var(--ptf-ink);
  line-height: 1.35;
}

.ptf-card h2 {
  font-size: 20px;
}

.ptf-card h3 {
  font-size: 17px;
}

.ptf-card hr {
  height: 1px;
  margin: 22px 0;
  border: 0;
  background: var(--ptf-line);
}

.ptf-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.ptf-card-head > div {
  min-width: 0;
}

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

.ptf-field {
  display: grid;
  min-width: 0;
  gap: 6px;
  color: #334155;
  font-size: 13px;
  font-weight: 750;
}

.ptf-cash [hidden] {
  display: none !important;
}

.ptf-field > span b {
  margin-left: 4px;
  color: var(--ptf-danger);
  font-size: 11px;
}

.ptf-field input,
.ptf-field select,
.ptf-field textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  outline: 0;
  background: #fff;
  padding: 10px 12px;
  color: var(--ptf-ink);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.ptf-signed-input,
.ptf-cash-amount-control {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 8px;
}

.ptf-signed-input > select,
.ptf-cash-amount-control > select {
  width: 100%;
}

.ptf-field textarea {
  min-height: 76px;
  resize: vertical;
}

.ptf-field input:focus,
.ptf-field select:focus,
.ptf-field textarea:focus {
  border-color: var(--ptf-blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.14);
}

.ptf-button,
.ptf-text-button,
.ptf-remove-button {
  border: 0;
  cursor: pointer;
}

.ptf-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  background: var(--ptf-blue);
  padding: 10px 16px;
  color: #fff;
  font-weight: 800;
  line-height: 1.3;
  text-decoration: none;
  box-shadow: 0 7px 16px rgba(37, 99, 235, 0.2);
  transition: background 0.15s ease, transform 0.15s ease;
}

.ptf-button:hover,
.ptf-button:focus-visible {
  background: var(--ptf-blue-dark);
}

.ptf-button:active {
  transform: translateY(1px);
}

.ptf-button:disabled,
.ptf-text-button:disabled,
.ptf-remove-button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.ptf-button-secondary {
  border: 1px solid #bfd3ff;
  background: var(--ptf-blue-soft);
  color: var(--ptf-blue-dark);
  box-shadow: none;
}

.ptf-button-secondary:hover,
.ptf-button-secondary:focus-visible {
  background: #dbeafe;
}

.ptf-button-large {
  width: 100%;
  min-height: 52px;
  margin-top: 18px;
  font-size: 16px;
}

.ptf-button-small {
  min-height: 42px;
  padding: 8px 12px;
  font-size: 13px;
}

.ptf-text-button {
  min-height: 42px;
  border-radius: 8px;
  background: transparent;
  padding: 7px 5px;
  color: var(--ptf-blue-dark);
  font-size: 13px;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 3px;
}

.ptf-text-button:hover,
.ptf-text-button:focus-visible {
  text-decoration-color: currentColor;
}

.ptf-remove-button {
  min-width: 44px;
  min-height: 40px;
  border-radius: 9px;
  background: var(--ptf-danger-soft);
  padding: 7px 10px;
  color: var(--ptf-danger);
  font-size: 12px;
  font-weight: 800;
}

.ptf-help,
.ptf-muted {
  color: var(--ptf-muted);
  font-size: 13px;
  line-height: 1.65;
}

.ptf-help {
  margin: 12px 0;
}

.ptf-muted {
  margin: 10px 0;
}

.ptf-inline-status {
  min-height: 24px;
  margin: 10px 0;
  color: var(--ptf-success);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.55;
}

.ptf-inline-status.is-error {
  color: var(--ptf-danger);
}

.ptf-balance {
  display: flex;
  width: 100%;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-top: 14px;
  border: 1px solid #bfd3ff;
  border-radius: 14px;
  background: var(--ptf-blue-soft);
  padding: 13px 15px;
}

.ptf-balance span {
  color: #466080;
  font-size: 13px;
  font-weight: 750;
}

.ptf-balance strong {
  color: var(--ptf-blue-dark);
  font-size: 24px;
}

.ptf-participant-picker {
  margin: 0 0 16px;
}

.ptf-manager-overview {
  margin: 18px 0;
  border: 1px solid var(--ptf-line);
  border-radius: 16px;
  background: #f8faff;
  padding: 16px;
}

.ptf-manager-overview-head {
  display: grid;
  gap: 12px;
  margin-bottom: 14px;
}

.ptf-manager-overview-head h3,
.ptf-manager-overview-head p {
  margin: 0;
}

.ptf-manager-overview-head h3 {
  margin-top: 3px;
  font-size: 18px;
}

.ptf-manager-overview-head > div:first-child > p:last-child {
  margin-top: 5px;
  color: var(--ptf-muted);
  font-size: 12px;
  line-height: 1.6;
}

.ptf-manager-total {
  display: flex;
  min-width: 0;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  border-radius: 12px;
  background: #eaf1ff;
  padding: 11px 12px;
}

.ptf-manager-total span {
  color: #466080;
  font-size: 12px;
  font-weight: 750;
}

.ptf-manager-total strong {
  color: var(--ptf-blue-dark);
  font-size: 20px;
  white-space: nowrap;
}

.ptf-cash-overview-list {
  display: grid;
  gap: 9px;
}

.ptf-cash-member {
  display: grid;
  width: 100%;
  min-width: 0;
  min-height: 96px;
  gap: 6px;
  border: 1px solid var(--ptf-line);
  border-radius: 12px;
  background: #fff;
  padding: 12px;
  color: var(--ptf-ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.ptf-cash-member:focus-visible,
.ptf-cash-member.is-selected {
  outline: 0;
  border-color: var(--ptf-blue);
  background: var(--ptf-blue-soft);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.13);
}

.ptf-cash-member-name {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.ptf-cash-member-name > strong {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ptf-cash-member-pending,
.ptf-cash-member-clear {
  flex: 0 0 auto;
  border-radius: 999px;
  padding: 4px 7px;
  font-size: 10px;
  font-weight: 850;
}

.ptf-cash-member-pending {
  background: var(--ptf-warning-soft);
  color: var(--ptf-warning);
}

.ptf-cash-member-clear {
  background: var(--ptf-success-soft);
  color: var(--ptf-success);
}

.ptf-cash-member-balance {
  color: var(--ptf-blue-dark);
  font-size: 21px;
}

.ptf-cash-member-updated {
  color: var(--ptf-muted);
  font-size: 11px;
}

.ptf-cash-member-confirmed {
  color: var(--ptf-muted);
  font-size: 12px;
  font-weight: 700;
}

@media (hover: hover) and (pointer: fine) {
  .ptf-cash-member:hover {
    border-color: #9db9f6;
    background: #f8fbff;
  }
}

.ptf-event-list {
  display: grid;
  gap: 10px;
}

.ptf-cash.is-member-view {
  max-width: 760px;
}

.ptf-cash.is-member-view .ptf-balance {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.ptf-cash.is-member-view .ptf-balance small {
  grid-column: 1 / -1;
  color: #52637b;
  font-size: 12px;
  line-height: 1.55;
}

.ptf-cash.is-member-view [data-cash-refresh] {
  min-height: 44px;
}

.ptf-cash.is-member-view .ptf-event-actions > button {
  min-height: 44px;
}

.ptf-readonly-notice {
  margin: 0 0 16px;
  border: 1px solid #bfd3ff;
  border-radius: 12px;
  background: var(--ptf-blue-soft);
  padding: 11px 13px;
  color: var(--ptf-blue-dark);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.6;
}

.ptf-member-attention {
  display: grid;
  gap: 12px;
}

.ptf-member-attention-head h4,
.ptf-member-attention-head p {
  margin: 0;
}

.ptf-member-attention-head h4 {
  color: var(--ptf-ink);
  font-size: 17px;
  line-height: 1.4;
}

.ptf-member-attention-head p {
  margin-top: 4px;
  color: var(--ptf-muted);
  font-size: 13px;
  line-height: 1.6;
}

.ptf-member-clear-state {
  margin: 0;
  border-radius: 11px;
  background: var(--ptf-success-soft);
  padding: 13px;
  color: var(--ptf-success);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.5;
}

.ptf-member-history {
  margin-top: 16px;
  border-top: 1px solid var(--ptf-line);
}

.ptf-member-history > summary {
  display: flex;
  min-height: 48px;
  align-items: center;
  cursor: pointer;
  color: var(--ptf-blue-dark);
  font-size: 14px;
  font-weight: 800;
}

.ptf-member-history > summary:focus-visible {
  border-radius: 8px;
  outline: 3px solid rgba(37, 99, 235, 0.2);
  outline-offset: 2px;
}

.ptf-member-history[open] > summary {
  margin-bottom: 10px;
}

.ptf-event {
  border: 1px solid var(--ptf-line);
  border-radius: 12px;
  background: #fbfcfe;
  padding: 13px;
}

.ptf-event.is-attention {
  border-color: #edc671;
  background: #fffdf8;
}

.ptf-event.is-requested {
  border-color: var(--ptf-blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.ptf-event-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.ptf-event-head > div {
  display: grid;
  gap: 3px;
}

.ptf-event-amount {
  color: var(--ptf-ink);
  font-size: 18px;
  font-weight: 850;
}

.ptf-badge {
  flex: 0 0 auto;
  border-radius: 999px;
  padding: 5px 8px;
  font-size: 11px;
  font-weight: 850;
}

.ptf-badge.is-pending {
  background: var(--ptf-warning-soft);
  color: var(--ptf-warning);
}

.ptf-badge.is-confirmed {
  background: var(--ptf-success-soft);
  color: var(--ptf-success);
}

.ptf-badge.is-withdrawn {
  background: #eef2f7;
  color: #64748b;
}

.ptf-danger-button {
  color: var(--ptf-danger);
}

.ptf-event-meta,
.ptf-event-note,
.ptf-event-balance {
  margin: 7px 0 0;
  color: var(--ptf-muted);
  font-size: 12px;
  line-height: 1.55;
}

.ptf-event-note {
  border-radius: 8px;
  background: #f1f5f9;
  padding: 8px;
  color: #475569;
  white-space: pre-wrap;
}

.ptf-event-report {
  display: grid;
  gap: 3px;
  margin-top: 9px;
  padding: 9px 10px;
  border: 1px solid #d7e2f1;
  border-radius: 9px;
  background: #f4f8fd;
  color: #243b5a;
}

.ptf-event-report strong,
.ptf-event-report p {
  margin: 0;
}

.ptf-event-report p {
  font-size: 12px;
  line-height: 1.45;
}

.ptf-event-balance {
  color: var(--ptf-success);
  font-weight: 800;
}

.ptf-event-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 8px;
}

.ptf-event-editor {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
  border-top: 1px solid var(--ptf-line);
  padding-top: 12px;
}

.ptf-event-editor .ptf-field-wide,
.ptf-event-editor-actions {
  grid-column: 1 / -1;
}

.ptf-event-editor-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

@media (max-width: 430px) {
  .ptf-cash.is-member-view {
    padding-inline: 10px;
  }

  .ptf-cash.is-member-view .ptf-section-head {
    margin-bottom: 14px;
  }

  .ptf-cash.is-member-view .ptf-balance strong {
    font-size: 22px;
  }

  .ptf-cash.is-member-view .ptf-card {
    padding: 15px 12px;
  }

  .ptf-cash.is-member-view .ptf-event-head {
    display: grid;
    gap: 8px;
  }

  .ptf-cash.is-member-view .ptf-badge {
    justify-self: start;
  }

  .ptf-cash.is-member-view .ptf-event-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    justify-items: stretch;
  }

  .ptf-cash.is-member-view .ptf-event-actions > button {
    width: 100%;
  }

  .ptf-event-editor {
    grid-template-columns: 1fr;
  }

  .ptf-event-editor .ptf-field-wide,
  .ptf-event-editor-actions {
    grid-column: auto;
  }
}

.ptf-participants {
  display: grid;
  gap: 12px;
}

.ptf-nori-rate {
  margin-bottom: 18px;
  border: 1px solid #bfd3ff;
  border-radius: 13px;
  background: var(--ptf-blue-soft);
  padding: 12px;
}

.ptf-rate-input {
  display: grid;
  grid-template-columns: auto minmax(90px, 1fr) auto;
  align-items: center;
  gap: 8px;
}

.ptf-rate-input em {
  color: #466080;
  font-size: 12px;
  font-style: normal;
  white-space: nowrap;
}

.ptf-rate-presets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 8px;
}

.ptf-nori-rate .ptf-help {
  margin: 8px 0 0;
}

.ptf-participant {
  position: relative;
  min-width: 0;
  margin: 0;
  border: 1px solid var(--ptf-line);
  border-radius: 13px;
  background: #fbfcfe;
  padding: 12px;
}

.ptf-participant legend {
  padding: 0 5px;
  color: #334155;
  font-size: 13px;
  font-weight: 850;
}

.ptf-participant > .ptf-remove-button {
  float: right;
  margin: 0 0 6px 8px;
}

.ptf-organizer-field {
  margin-top: 14px;
}

.ptf-details {
  margin-top: 16px;
  border: 1px solid var(--ptf-line);
  border-radius: 13px;
  background: #fbfcfe;
  padding: 0 13px 13px;
}

.ptf-details summary {
  min-height: 48px;
  cursor: pointer;
  padding: 14px 0 11px;
  color: var(--ptf-blue-dark);
  font-weight: 850;
}

.ptf-transfer {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
  margin-bottom: 10px;
  border-top: 1px solid var(--ptf-line);
  padding-top: 12px;
}

.ptf-transfer .ptf-remove-button {
  justify-self: end;
}

.ptf-result-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 9px;
}

.ptf-result-summary > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  border-radius: 11px;
  background: #f1f5f9;
  padding: 11px 12px;
}

.ptf-result-summary span {
  color: var(--ptf-muted);
  font-size: 12px;
  font-weight: 750;
}

.ptf-result-summary strong {
  font-size: 18px;
}

.ptf-result h3 {
  margin: 20px 0 9px;
}

.ptf-result-list,
.ptf-settlement-list {
  display: grid;
  gap: 8px;
}

.ptf-result-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--ptf-line);
  padding: 9px 2px;
}

.ptf-result-row span {
  min-width: 0;
  overflow-wrap: anywhere;
  font-weight: 850;
}

.ptf-result-person {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.ptf-result-person small {
  color: var(--ptf-muted);
  font-size: 11px;
  line-height: 1.45;
}

.ptf-settlement {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 7px;
  border: 1px solid #bfd3ff;
  border-radius: 11px;
  background: var(--ptf-blue-soft);
  padding: 11px;
}

.ptf-settlement > strong:last-of-type {
  text-align: right;
}

.ptf-settlement > strong {
  min-width: 0;
  overflow-wrap: anywhere;
}

.ptf-settlement b {
  grid-column: 1 / -1;
  color: var(--ptf-blue-dark);
  font-size: 17px;
  text-align: center;
}

.ptf-arrow {
  color: var(--ptf-blue);
  font-size: 18px;
  font-weight: 900;
}

.ptf-success-box {
  border-radius: 11px;
  background: var(--ptf-success-soft);
  padding: 12px;
  color: var(--ptf-success);
  font-weight: 800;
}

.ptf-check {
  display: flex;
  min-height: 46px;
  align-items: flex-start;
  gap: 9px;
  color: #334155;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.55;
}

.ptf-check input {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  margin-top: 1px;
  accent-color: var(--ptf-blue);
}

.ptf-history-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 1px solid var(--ptf-line);
  padding: 10px 0;
}

.ptf-history-row > div {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.ptf-history-row strong,
.ptf-history-row span {
  overflow-wrap: anywhere;
}

.ptf-history-row span {
  color: var(--ptf-muted);
  font-size: 12px;
}

.ptools-finance-login {
  margin-top: 20px;
  border: 1px solid var(--ptf-line);
  border-radius: var(--ptf-radius);
  background: #fff;
  box-shadow: var(--ptf-shadow);
}

@media (min-width: 640px) {
  .ptf-cash,
  .ptf-noriuchi,
  .ptools-finance-login {
    padding: 32px 22px 64px;
  }

  .ptf-card {
    padding: 22px;
  }

  .ptf-form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ptf-manager-overview-head {
    grid-template-columns: minmax(0, 1fr) minmax(210px, auto);
    align-items: end;
  }

  .ptf-cash-overview-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ptf-field-wide,
  .ptf-form-grid > .ptf-check {
    grid-column: 1 / -1;
  }

  .ptf-result-summary {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ptf-result-summary > div {
    display: grid;
  }

  .ptf-transfer {
    grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
    align-items: end;
  }

  .ptf-transfer .ptf-remove-button {
    margin-bottom: 3px;
  }

  .ptf-settlement {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) minmax(110px, auto);
  }

  .ptf-settlement b {
    grid-column: auto;
    text-align: right;
  }
}

@media (min-width: 900px) {
  .ptf-app-header {
    padding-inline: 28px;
  }

  .ptf-app-nav {
    gap: 20px;
  }

  .ptf-app-nav a {
    font-size: 14px;
  }

  .ptf-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
  }

  .ptf-balance {
    width: 280px;
    flex: 0 0 auto;
    margin-top: 0;
  }

  .ptf-participants {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ptf-cash-overview-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  .ptf-button,
  .ptf-cash-member,
  .ptf-field input,
  .ptf-field select,
  .ptf-field textarea {
    transition: none;
  }
}
