@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600;700&display=swap');

:root {
  --ink: #020617;
  --muted: #475569;
  --accent: #1e3a8a;
  --accent-2: #ca8a04;
  --accent-soft: #dbeafe;
  --bg: #f8fafc;
  --card: #ffffff;
  --stroke: #dbe5f0;
  --success: #15803d;
  --danger: #b91c1c;
  --warning: #b45309;
  --shadow: 0 14px 34px rgba(2, 6, 23, 0.08);
  --shadow-soft: 0 6px 16px rgba(2, 6, 23, 0.06);
  --radius: 18px;
  --font: "IBM Plex Sans", "Segoe UI", "Inter", sans-serif;
}

* {
  box-sizing: border-box;
}

a,
button,
select,
input,
textarea {
  touch-action: manipulation;
}

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

body {
  margin: 0;
  font-family: var(--font);
  line-height: 1.5;
  background:
    radial-gradient(circle at 0% 0%, #e0e7ff 0%, transparent 38%),
    radial-gradient(circle at 100% 0%, #fef3c7 0%, transparent 34%),
    linear-gradient(180deg, #f8fafc 0%, #eff6ff 100%);
  color: var(--ink);
}

.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  margin: 12px 16px 0;
  border: 1px solid var(--stroke);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-soft);
  position: sticky;
  top: 10px;
  z-index: 30;
}

.top-nav .logo {
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--accent);
  font-size: 1rem;
}

.top-nav .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.top-nav .nav-links a {
  text-decoration: none;
  color: #1e293b;
  font-size: 0.92rem;
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid transparent;
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.top-nav .nav-links a:hover {
  background: #f1f5f9;
  border-color: var(--stroke);
}

.top-nav .nav-links a.active {
  color: #fff;
  font-weight: 600;
  background: var(--accent);
  border-color: var(--accent);
}

.page {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 30px 32px 64px;
}

.statement-page.page {
  max-width: none;
  padding-left: 24px;
  padding-right: 24px;
}

.editor-page {
  max-width: 100%;
  padding-left: 24px;
  padding-right: 24px;
}

.hero {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 28px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  color: var(--accent);
  margin: 0 0 8px;
}

h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin: 0 0 8px;
}

.subtitle {
  margin: 0;
  color: var(--muted);
}

.meta {
  background: var(--card);
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  font-size: 0.9rem;
  color: var(--muted);
}

.controls {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.controls label {
  display: flex;
  flex-direction: column;
  font-size: 0.85rem;
  color: var(--muted);
  gap: 6px;
}

select {
  border: 1px solid var(--stroke);
  border-radius: 10px;
  min-height: 44px;
  padding: 10px 12px;
  font-size: 1rem;
  background: var(--card);
  color: var(--ink);
}

.inline-select {
  min-width: 180px;
}

.inline-select:disabled {
  opacity: 0.6;
}

.inline-select.is-internal {
  border-color: #c8a35b;
  background: rgba(224, 122, 95, 0.08);
}

.inline-link {
  align-self: flex-end;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid var(--stroke);
  background: var(--card);
  color: var(--ink);
  text-decoration: none;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  transition: border-color 0.18s ease, color 0.18s ease, background-color 0.18s ease;
}

.inline-link:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: #f8fbff;
}

.inline-link.disabled {
  opacity: 0.5;
  pointer-events: none;
}

.nav-editor.disabled {
  opacity: 0.5;
  pointer-events: none;
}

.upload-card {
  background: var(--card);
  border: 1px dashed var(--stroke);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 24px;
  display: grid;
  gap: 16px;
  box-shadow: var(--shadow);
}

.dropzone {
  border: 2px dashed var(--stroke);
  border-radius: 14px;
  padding: 20px;
  text-align: center;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
  display: grid;
  gap: 6px;
}

.dropzone input[type="file"] {
  display: none;
}

.dropzone.is-hover {
  border-color: var(--accent);
  background: rgba(31, 122, 140, 0.08);
}

#statement-status {
  min-height: 1.1em;
}

#statement-status.error {
  color: #b0413e;
}

.months {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
  gap: 10px;
  margin-bottom: 24px;
}

.month-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid var(--stroke);
  background: var(--card);
  color: var(--ink);
  text-decoration: none;
  font-size: 0.9rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.month-link:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.month-link.is-active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.login-body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-page {
  width: 100%;
  padding: 32px;
  display: flex;
  justify-content: center;
}

.login-card {
  width: 100%;
  max-width: 420px;
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px;
  display: grid;
  gap: 20px;
}

.login-form {
  display: grid;
  gap: 14px;
}

.login-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--muted);
}

.login-form input {
  border: 1px solid var(--stroke);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 1rem;
  background: var(--card);
  color: var(--ink);
}

.login-form button {
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-size: 0.95rem;
  cursor: pointer;
}

.login-error {
  min-height: 1.2em;
  margin: 0;
  color: #b0413e;
  font-size: 0.85rem;
}

.filters {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 0 0 20px;
}

.filter-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--muted);
}

.day-separator td {
  padding: 8px 12px;
  background: rgba(11, 31, 42, 0.06);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.7rem;
  color: var(--muted);
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 50;
}

.modal.is-open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 31, 42, 0.4);
}

.modal-card {
  position: relative;
  background: var(--card);
  border-radius: var(--radius);
  padding: 20px;
  width: min(520px, 90vw);
  box-shadow: var(--shadow);
  border: 1px solid var(--stroke);
  z-index: 1;
  display: grid;
  gap: 12px;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-body textarea {
  width: 100%;
  border: 1px solid var(--stroke);
  border-radius: 10px;
  padding: 10px;
  font-size: 1rem;
  font-family: var(--font);
}

.modal-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.import-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 20px;
}

.import-bar button {
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 10px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  cursor: pointer;
}

.import-bar .ghost-button {
  border: 1px solid var(--stroke);
  background: var(--card);
  color: var(--ink);
}

.import-bar .error {
  color: #b0413e;
}

.category-table td:last-child {
  text-align: left;
}

.category-table td:last-child .ghost-button {
  margin-right: 4px;
  min-width: 44px;
  min-height: 44px;
  padding: 8px 10px;
  font-size: 0.8rem;
}

.action-danger {
  border-color: #d62828;
  color: #d62828;
}

.action-info {
  border-color: #1d4ed8;
  color: #1d4ed8;
}

.action-warn {
  border-color: #f59e0b;
  color: #b45309;
}

.action-ignore {
  border-color: #c2410c;
  color: #9a3412;
}

.action-success {
  border-color: #15803d;
  color: #166534;
}

.ghost-button.action-danger:hover {
  border-color: #d62828;
  color: #d62828;
}

.ghost-button.action-info:hover {
  border-color: #1d4ed8;
  color: #1d4ed8;
}

.ghost-button.action-warn:hover {
  border-color: #f59e0b;
  color: #b45309;
}

.ghost-button.action-ignore:hover {
  border-color: #c2410c;
  color: #9a3412;
}

.ghost-button.action-success:hover {
  border-color: #15803d;
  color: #166534;
}

.kpis {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.kpi {
  background: var(--card);
  border-radius: var(--radius);
  padding: 16px 20px;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.kpi span {
  font-size: 0.85rem;
  color: var(--muted);
}

.kpi strong {
  font-size: 1.5rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  margin-bottom: 28px;
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 18px 20px 24px;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
}

.card h2 {
  margin-top: 0;
  font-size: 1.2rem;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.muted {
  color: var(--muted);
  font-size: 0.85rem;
}

.is-hidden {
  display: none;
}

.avg-kpis {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.avg-kpi {
  background: #fdf8f0;
  border: 1px dashed var(--accent-2);
  border-radius: 12px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.avg-kpi span {
  font-size: 0.85rem;
  color: var(--muted);
}

.avg-kpi strong {
  font-size: 1.25rem;
}

.avg-category-controls {
  margin-bottom: 16px;
  display: grid;
  gap: 10px;
}

.avg-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--muted);
}

.ghost-button {
  border: 1px solid var(--stroke);
  background: transparent;
  color: var(--ink);
  min-height: 36px;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.88rem;
  cursor: pointer;
  transition: border-color 0.18s ease, color 0.18s ease, background-color 0.18s ease, transform 0.08s ease;
}

.ghost-button:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: #f8fbff;
}

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

button:disabled,
.ghost-button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

.category-filter input {
  width: 100%;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid var(--stroke);
  background: var(--card);
}

.category-checklist {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 8px;
  max-height: 220px;
  overflow: auto;
  padding: 10px;
  border-radius: 12px;
  border: 1px solid var(--stroke);
  background: #fff;
}

.category-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
}

.category-check input {
  accent-color: var(--accent);
}

.drag-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 200px;
}

.drag-item {
  padding: 10px 12px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--stroke);
  cursor: grab;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.drag-item.dragging {
  opacity: 0.6;
}

.drag-label {
  font-size: 0.95rem;
}

.drag-controls {
  display: flex;
  align-items: center;
  gap: 6px;
}

.emoji-input {
  width: 36px;
  text-align: center;
  border: 1px solid var(--stroke);
  border-radius: 6px;
  padding: 4px;
}

.color-input {
  width: 32px;
  height: 32px;
  border: none;
  background: none;
  padding: 0;
}

.inline-form {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.inline-form input {
  flex: 1;
  min-height: 44px;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid var(--stroke);
}

.inline-form textarea {
  flex: 1;
  min-height: 60px;
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid var(--stroke);
  background: var(--card);
  resize: vertical;
  font: inherit;
}

.inline-form button {
  padding: 8px 12px;
  border-radius: 8px;
  border: none;
  background: var(--accent);
  color: #fff;
}

.drag-controls .rename-btn {
  padding: 4px 6px;
  border-radius: 8px;
  line-height: 1;
}

.mini-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.mini-list .tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #eef3ff;
  color: #1f3b6b;
  font-size: 0.85rem;
  border: 1px solid #d7e2ff;
}

.entry-form {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.entry-form input,
.entry-form select {
  min-height: 44px;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid var(--stroke);
}

.entry-form button {
  grid-column: 1 / -1;
  padding: 12px 16px;
  border-radius: 10px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-size: 1rem;
}
.table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  border-radius: 12px;
}

.statement-page {
  max-width: none;
  width: 100%;
}

.category-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
  table-layout: auto;
}

.category-table th,
.category-table td {
  padding: 6px 8px;
  border-bottom: 1px solid var(--stroke);
  text-align: left;
  vertical-align: middle;
}

.category-table td {
  white-space: normal;
}

.statement-page .category-table td:nth-child(9) {
  white-space: normal;
}

.statement-page .category-table td:nth-child(12) {
  white-space: nowrap;
}

.statement-page .category-table td:nth-child(9) {
  word-break: break-word;
}
.category-table th:first-child,
.category-table td:first-child {
  width: 32px;
  padding-left: 4px;
  padding-right: 4px;
  text-align: center;
}

.category-table th {
  color: #334155;
  font-weight: 600;
  background: #f8fafc;
}

.category-table td:last-child,
.category-table th:last-child {
  text-align: left;
  white-space: nowrap;
  overflow: visible;
}

.category-table td:nth-child(2),
.category-table th:nth-child(2) {
  text-align: right;
}

.statement-page .category-table td:nth-child(9),
.statement-page .category-table th:nth-child(9) {
  word-break: break-word;
}

.statement-page .category-table td:nth-child(6),
.statement-page .category-table th:nth-child(6) {
  word-break: break-word;
}

.amount-cell {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: flex-end;
}

.amount-input {
  width: 80px;
  height: 28px;
  padding: 2px 6px;
  border-radius: 8px;
  border: 1px solid var(--stroke);
  background: var(--card);
  font: inherit;
}

.amount-currency {
  color: var(--muted);
  font-size: 0.85rem;
}

.notes {
  background: #fdf8f0;
  border: 1px dashed var(--accent-2);
  padding: 16px 20px;
  border-radius: 14px;
}

.notes h3 {
  margin-top: 0;
}

.notes ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}

.card-header h2 {
  margin: 0;
}

.compact-note {
  padding-top: 12px;
  padding-bottom: 12px;
  margin-bottom: 16px;
}

.mini-select {
  padding: 6px 10px;
  border-radius: 8px;
  border: 1px solid var(--stroke);
  background: var(--card);
  font-size: 0.85rem;
}

@media (max-width: 720px) {
  .top-nav {
    top: 6px;
    margin: 8px;
    padding: 10px 12px;
    border-radius: 12px;
  }

  .top-nav .nav-links {
    width: 100%;
    gap: 6px;
  }

  .top-nav .nav-links a {
    font-size: 0.86rem;
    padding: 8px 10px;
  }

  .page {
    padding: 20px 14px 42px;
  }

  .hero {
    flex-direction: column;
    align-items: flex-start;
  }

  .controls {
    gap: 10px;
  }

  .controls label {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
.editor-controls {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.editor-controls button {
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 10px;
  border: none;
  background: var(--accent);
  color: #fff;
}

.empty-state {
  text-align: center;
  border-style: dashed;
}

.empty-state h3 {
  margin: 0 0 8px;
}

.kanban-section {
  margin-bottom: 20px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
  overscroll-behavior-x: contain;
}

.kanban-section.panning,
.kanban.panning {
  cursor: grabbing;
}

.no-select {
  user-select: none;
}

.kanban {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 210px;
  gap: 14px;
  overflow-x: visible;
  width: max-content;
  padding-bottom: 10px;
  touch-action: pan-x;
}

.kanban-column {
  background: #fff;
  border: 1px solid var(--stroke);
  border-top: 4px solid var(--cat-color, var(--stroke));
  border-radius: 12px;
  padding: 8px;
  min-height: 180px;
  box-shadow: inset 0 0 0 999px var(--cat-color-soft, transparent);
}

.kanban-column h3 {
  margin: 4px 0 10px;
  font-size: 0.95rem;
}

.kanban-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.kanban-card {
  padding: 6px 8px;
  border-radius: 10px;
  background: #fdf8f0;
  border: 1px solid var(--stroke);
  cursor: grab;
}

.card-title {
  font-weight: 600;
  font-size: 0.9rem;
}

.card-meta {
  font-size: 0.8rem;
  color: var(--muted);
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(360px, 90vw);
  height: 100vh;
  background: #fff;
  border-left: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  transform: translateX(100%);
  transition: transform 0.2s ease;
  display: flex;
  flex-direction: column;
  padding: 16px;
  z-index: 20;
}

.drawer.open {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.drawer-header button {
  border: none;
  background: transparent;
  font-size: 1.5rem;
  min-width: 44px;
  min-height: 44px;
  border-radius: 10px;
}

.drawer-form {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.drawer-form input,
.drawer-form select {
  min-height: 44px;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid var(--stroke);
}

.card .category-table input[type='text'],
.card .category-table input[type='number'],
.card .category-table input[type='date'] {
  width: 100%;
  padding: 6px 8px;
  border-radius: 8px;
  border: 1px solid var(--stroke);
  background: var(--card);
  font: inherit;
}

.card .category-table td .amount-currency {
  margin-left: 6px;
}

.plan-table {
  width: 100%;
  table-layout: fixed;
}

.plan-table th,
.plan-table td {
  padding: 6px 8px;
  vertical-align: middle;
}

.plan-table col.col-category {
  width: 180px;
}

.plan-table col.col-amount {
  width: 140px;
}

.plan-table col.col-date {
  width: 120px;
}

.plan-table col.col-comment {
  width: auto;
}

.plan-table col.col-actions {
  width: 70px;
}

.plan-table .amount-cell {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: flex-start;
}

.plan-table .amount-cell input[type='number'] {
  max-width: 90px;
}

.plan-table select {
  width: 100%;
  min-width: 0;
  min-height: 40px;
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid var(--stroke);
  background: var(--card);
  font: inherit;
}

.plan-table td:nth-child(4) input[type='text'] {
  min-width: 140px;
}

.drawer-actions {
  display: flex;
  gap: 8px;
}

.drawer-actions button {
  flex: 1;
  padding: 10px;
  border-radius: 8px;
  border: none;
}

.drawer-actions .danger {
  background: #e07a5f;
  color: #fff;
}

.statement-page .category-table select {
  height: 28px;
  padding: 2px 6px;
  font-size: 0.85rem;
}

.statement-page .category-table input[type='checkbox'] {
  transform: scale(0.9);
}

.table-checkbox {
  width: 28px;
  text-align: center;
}

.row-muted {
  opacity: 0.55;
}

.statement-page .inline-select {
  min-width: 0;
  width: 100%;
}

.statement-page .category-table td {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.statement-page .category-table.hide-bank-category th:nth-child(6),
.statement-page .category-table.hide-bank-category td:nth-child(6),
.statement-page .category-table.hide-bank-category col:nth-child(6) {
  display: none;
}

.statement-page .category-table.hide-mcc th:nth-child(7),
.statement-page .category-table.hide-mcc td:nth-child(7),
.statement-page .category-table.hide-mcc col:nth-child(7) {
  display: none;
}

.statement-page .category-table.hide-status th:nth-child(10),
.statement-page .category-table.hide-status td:nth-child(10),
.statement-page .category-table.hide-status col:nth-child(10) {
  display: none;
}

.statement-page .category-table.hide-comment th:nth-child(11),
.statement-page .category-table.hide-comment td:nth-child(11),
.statement-page .category-table.hide-comment col:nth-child(11) {
  display: none;
}
