:root {
  color-scheme: light;
  --bg: #fffaf0;
  --surface: #faf5e8;
  --surface-2: #f5f0e0;
  --surface-3: #ebe6d6;
  --line: #e5e5e5;
  --text: #0a0a0a;
  --body: #3a3a3a;
  --muted: #6a6a6a;
  --accent: #1a3a3a;
  --pink: #ff4d8b;
  --lavender: #b8a4ed;
  --peach: #ffb084;
  --ochre: #e8b94a;
  --mint: #a4d4c5;
  --good: #22c55e;
  --warn: #f59e0b;
  --bad: #ef4444;
  --shadow-soft: 0 14px 38px rgba(10, 10, 10, 0.06);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

button,
input,
select {
  font: inherit;
}

.app-shell {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 76px;
  padding: 18px 32px;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}

.eyebrow {
  margin: 0 0 4px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin: 0;
}

h1 {
  font-size: 40px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
}

.config-state {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  padding: 8px 10px;
  white-space: nowrap;
}

.config-state.ready {
  border-color: rgba(26, 58, 58, 0.2);
  background: var(--surface-2);
  color: var(--accent);
}

.config-state.missing {
  border-color: rgba(255, 107, 122, 0.55);
  color: var(--bad);
}

.query-band {
  display: grid;
  grid-template-columns: minmax(150px, 1.2fr) repeat(3, minmax(120px, 1fr)) auto;
  gap: 12px;
  padding: 20px 32px;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.time-converter {
  display: grid;
  grid-template-columns: minmax(190px, 0.85fr) minmax(300px, 1fr) minmax(250px, 0.9fr) minmax(220px, 0.9fr) minmax(250px, 1fr);
  align-items: end;
  gap: 12px;
  padding: 16px 32px;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}

.time-converter h2 {
  margin-bottom: 4px;
}

.time-converter p {
  color: var(--muted);
  font-size: 13px;
}

.time-result {
  display: grid;
  gap: 5px;
  min-height: 68px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--mint);
  padding: 12px 16px;
}

.time-result span {
  color: var(--body);
  font-size: 12px;
  font-weight: 700;
}

.time-result strong {
  font-size: 20px;
  line-height: 1.15;
}

.time-result.error {
  background: rgba(239, 68, 68, 0.1);
  color: var(--bad);
}

label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

input,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bg);
  color: var(--text);
  min-height: 44px;
  padding: 12px 16px;
  outline: none;
}

select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, currentColor 50%),
    linear-gradient(135deg, currentColor 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 50%,
    calc(100% - 13px) 50%;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
  padding-right: 30px;
}

input:focus,
select:focus {
  border-color: var(--accent);
}

.date-picker,
.time-picker {
  display: grid;
  min-height: 68px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--bg);
  overflow: hidden;
}

.date-picker {
  grid-template-columns: 1.25fr 0.9fr 0.9fr;
}

.time-picker {
  grid-template-columns: 0.9fr 1fr 1fr;
}

.date-picker select,
.time-picker select {
  min-height: 68px;
  border: 0;
  border-radius: 0;
  background-color: transparent;
  font-size: 18px;
  font-weight: 600;
}

.date-picker select:not(:last-child),
.time-picker select:not(:last-child) {
  border-right: 1px solid var(--line);
}

.date-picker select:focus,
.time-picker select:focus {
  background-color: var(--surface-2);
}

.time-picker select:first-child {
  background-color: var(--peach);
}

.time-picker select:first-child:focus {
  background-color: var(--ochre);
}

.date-picker select:first-child {
  background-color: var(--surface-2);
}

.date-picker select:nth-child(2) {
  background-color: rgba(184, 164, 237, 0.35);
}

.date-picker select:nth-child(3) {
  background-color: rgba(164, 212, 197, 0.45);
}

button {
  border: 1px solid transparent;
  border-radius: 12px;
  background: #0a0a0a;
  color: #ffffff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  min-height: 44px;
  padding: 12px 20px;
}

button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.workspace {
  display: grid;
  grid-template-columns: 292px minmax(0, 1fr);
  min-height: 0;
  background: var(--bg);
}

.timeline-panel,
.data-panel {
  min-height: 0;
}

.timeline-panel {
  border-right: 1px solid var(--line);
  background: var(--surface);
  overflow: auto;
}

.data-panel {
  display: grid;
  grid-template-rows: auto auto auto auto auto auto 1fr auto;
  overflow: hidden;
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}

.table-head p {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(246px, 1fr));
  gap: 16px;
  padding: 24px 24px 22px;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}

.summary-empty {
  color: var(--muted);
  font-size: 13px;
}

.metric-card {
  display: grid;
  align-content: space-between;
  gap: 12px;
  min-height: 128px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface-2);
  color: var(--text);
  padding: 22px;
  text-align: left;
}

.metric-card.metric-basic {
  background: var(--peach);
}

.metric-card.metric-currency {
  background: var(--mint);
}

.metric-card.metric-progress {
  background: var(--ochre);
}

.metric-card.metric-ranking {
  background: var(--lavender);
}

.metric-card.metric-event {
  background: var(--pink);
  color: #ffffff;
}

.metric-card.metric-purchase {
  background: var(--accent);
  color: #ffffff;
}

.metric-card.metric-default {
  background: var(--surface-2);
}

.metric-card strong {
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
  overflow-wrap: normal;
  word-break: keep-all;
}

.metric-card em {
  color: currentColor;
  opacity: 0.8;
  font-size: 13px;
  font-weight: 600;
  font-style: normal;
}

.category-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 14px 24px;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}

.holdings-panel {
  display: grid;
  gap: 16px;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.holdings-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.holdings-stats,
.featured-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.holdings-stats span,
.featured-cards div {
  display: flex;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg);
  color: var(--muted);
  padding: 8px 12px;
  font-size: 13px;
}

.holdings-stats strong,
.featured-cards strong {
  color: var(--text);
}

.holdings-tables {
  display: grid;
  grid-template-columns: 1.05fr 1.42fr 0.83fr 0.78fr;
  gap: 16px;
}

.holdings-tables section {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--bg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.mini-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin: 0;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}

.holdings-tables section:nth-child(1) .mini-section-head {
  background: var(--peach);
}

.holdings-tables section:nth-child(2) .mini-section-head {
  background: var(--lavender);
}

.holdings-tables section:nth-child(3) .mini-section-head {
  background: var(--mint);
}

.holdings-tables section:nth-child(4) .mini-section-head {
  background: var(--ochre);
}

.holdings-tables h3 {
  margin: 0;
  font-size: 14px;
}

.mini-section-head button {
  border-color: var(--line);
  border-radius: 12px;
  background: var(--bg);
  color: var(--text);
  min-height: 34px;
  padding: 8px 12px;
  font-size: 12px;
}

.mini-table-wrap {
  max-height: 220px;
  overflow-y: auto;
  overflow-x: hidden;
}

.mini-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.holdings-tables section:nth-child(1) .mini-table th:nth-child(1),
.holdings-tables section:nth-child(1) .mini-table td:nth-child(1) {
  width: 11%;
}

.holdings-tables section:nth-child(1) .mini-table th:nth-child(2),
.holdings-tables section:nth-child(1) .mini-table td:nth-child(2) {
  width: 26%;
}

.holdings-tables section:nth-child(1) .mini-table th:nth-child(3),
.holdings-tables section:nth-child(1) .mini-table td:nth-child(3) {
  width: 20%;
}

.holdings-tables section:nth-child(1) .mini-table th:nth-child(n + 4),
.holdings-tables section:nth-child(1) .mini-table td:nth-child(n + 4) {
  width: 10.75%;
  text-align: center;
}

.holdings-tables section:nth-child(2) .mini-table th:nth-child(1),
.holdings-tables section:nth-child(2) .mini-table td:nth-child(1) {
  width: 8%;
}

.holdings-tables section:nth-child(2) .mini-table th:nth-child(2),
.holdings-tables section:nth-child(2) .mini-table td:nth-child(2) {
  width: 16%;
}

.holdings-tables section:nth-child(2) .mini-table th:nth-child(3),
.holdings-tables section:nth-child(2) .mini-table td:nth-child(3) {
  width: 14%;
}

.holdings-tables section:nth-child(2) .mini-table th:nth-child(n + 4),
.holdings-tables section:nth-child(2) .mini-table td:nth-child(n + 4) {
  width: 6.2%;
  text-align: center;
}

.holdings-tables section:nth-child(3) .mini-table th:nth-child(1),
.holdings-tables section:nth-child(3) .mini-table td:nth-child(1) {
  width: 16%;
}

.holdings-tables section:nth-child(3) .mini-table th:nth-child(2),
.holdings-tables section:nth-child(3) .mini-table td:nth-child(2) {
  width: 46%;
}

.holdings-tables section:nth-child(3) .mini-table th:nth-child(3),
.holdings-tables section:nth-child(3) .mini-table td:nth-child(3),
.holdings-tables section:nth-child(3) .mini-table th:nth-child(4),
.holdings-tables section:nth-child(3) .mini-table td:nth-child(4) {
  width: 19%;
  text-align: center;
}

.holdings-tables section:nth-child(4) .mini-table th,
.holdings-tables section:nth-child(4) .mini-table td {
  width: 25%;
  text-align: center;
}

.mini-table th,
.mini-table td {
  padding: 8px 7px;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mini-table th {
  position: sticky;
  top: 0;
  background: var(--surface-2);
  color: var(--muted);
}

.category-tabs button {
  border-color: var(--line);
  background: transparent;
  color: var(--muted);
  min-height: 38px;
  padding: 8px 16px;
  white-space: nowrap;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  background: rgba(10, 10, 10, 0.42);
  padding: 28px;
}

.modal-backdrop[hidden] {
  display: none;
}

.modal-panel {
  display: grid;
  grid-template-rows: auto 1fr;
  width: min(1180px, 96vw);
  max-height: 88vh;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--bg);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(10, 10, 10, 0.18);
}

.modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.modal-head button {
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  padding: 9px 13px;
}

.modal-table-wrap {
  overflow: auto;
}

.manager-modal-body {
  display: grid;
  gap: 18px;
  min-height: 0;
  overflow: auto;
  padding: 18px;
}

.manager-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.manager-summary span {
  display: flex;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--muted);
  padding: 8px 12px;
  font-size: 13px;
}

.manager-summary strong {
  color: var(--text);
}

.modal-table-section {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.modal-table-section h3 {
  margin: 0;
  font-size: 15px;
}

.modal-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.modal-table-section .modal-table-wrap {
  border: 1px solid var(--line);
  border-radius: 12px;
}

.modal-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: auto;
}

.modal-table th,
.modal-table td {
  border-bottom: 1px solid var(--line);
  padding: 9px 11px;
  font-size: 13px;
  text-align: left;
  white-space: nowrap;
}

.modal-table th {
  position: sticky;
  top: 0;
  background: var(--surface-2);
  color: var(--muted);
}

.table-sort-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  padding: 0;
  font-size: inherit;
  font-weight: inherit;
  text-align: left;
}

.table-sort-button:hover,
.table-sort-button.active {
  color: var(--accent);
  background: transparent;
}

.sort-icon {
  color: currentColor;
  font-size: 10px;
  line-height: 1;
  opacity: 0.72;
}

.category-tabs button.active {
  border-color: transparent;
  color: var(--text);
  background: var(--surface-2);
}

.status-tabs {
  display: flex;
  align-items: center;
  gap: 7px;
  overflow-x: auto;
}

.status-tabs button {
  border-color: var(--line);
  background: var(--bg);
  color: var(--muted);
  min-height: 38px;
  padding: 8px 14px;
  white-space: nowrap;
}

.status-tabs button.active {
  border-color: var(--accent);
  background: var(--accent);
  color: #ffffff;
}

.timeline {
  display: grid;
  gap: 8px;
  padding: 14px;
}

.timeline.empty,
.message {
  color: var(--muted);
  padding: 14px 18px;
}

.revision-button {
  display: grid;
  gap: 4px;
  width: 100%;
  border-color: transparent;
  border-radius: 16px;
  background: var(--bg);
  color: var(--text);
  text-align: left;
  min-height: 50px;
  padding: 14px 16px;
}

.revision-button span {
  display: none;
}

.revision-button.active {
  border-color: var(--accent);
  background: var(--accent);
  color: #ffffff;
}

.revision-load-more,
.table-pagination button {
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: inherit;
  cursor: pointer;
}

.table-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px;
}

.table-pagination button:disabled,
.revision-load-more:disabled {
  cursor: default;
  opacity: 0.5;
}

.table-tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 24px;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.table-tools input {
  max-width: 340px;
}

.row-count {
  color: var(--muted);
  font-size: 13px;
  white-space: nowrap;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  display: inline-block;
}

.dot.added {
  background: var(--good);
}

.dot.changed {
  background: var(--warn);
}

.dot.removed {
  background: var(--bad);
}

.message {
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}

.message.success {
  color: var(--good);
}

.message.error {
  color: var(--bad);
}

.table-wrap {
  overflow-y: auto;
  overflow-x: hidden;
}

table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.resizable-table {
  --col-1: 28%;
  --col-2: 10%;
  --col-3: 27%;
  --col-4: 23%;
  --col-5: 6%;
  --col-6: 6%;
}

th,
td {
  border-bottom: 1px solid var(--line);
  padding: 12px 14px;
  text-align: left;
  vertical-align: top;
}

th {
  position: sticky;
  top: 0;
  background: var(--surface-2);
  color: var(--muted);
  font-size: 12px;
  z-index: 1;
}

.resizable-table th {
  user-select: none;
}

.resizable-table th:nth-child(1) {
  width: var(--col-1);
}

.resizable-table th:nth-child(2) {
  width: var(--col-2);
}

.resizable-table th:nth-child(3) {
  width: var(--col-3);
}

.resizable-table th:nth-child(4) {
  width: var(--col-4);
}

.resizable-table th:nth-child(5) {
  width: var(--col-5);
}

.resizable-table th:nth-child(6) {
  width: var(--col-6);
}

.column-resizer {
  position: absolute;
  top: 0;
  right: -4px;
  z-index: 2;
  width: 8px;
  height: 100%;
  cursor: col-resize;
}

.column-resizer::after {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 3px;
  width: 2px;
  border-radius: 999px;
  background: transparent;
}

.column-resizer:hover::after,
.is-resizing-column .column-resizer::after {
  background: var(--accent);
}

.is-resizing-column {
  cursor: col-resize;
  user-select: none;
}

td {
  overflow-wrap: anywhere;
}

code,
.path {
  font-family: Consolas, "Courier New", monospace;
  font-size: 13px;
}

.idol-cell {
  color: var(--body);
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

tr.added {
  background: rgba(34, 197, 94, 0.12);
}

tr.changed {
  background: rgba(245, 158, 11, 0.13);
}

tr.removed {
  background: rgba(239, 68, 68, 0.11);
}

.status {
  display: inline-block;
  border-radius: 999px;
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 700;
}

.status.added {
  color: var(--good);
  background: rgba(70, 209, 140, 0.12);
}

.status.changed {
  color: var(--warn);
  background: rgba(246, 193, 90, 0.13);
}

.status.removed {
  color: var(--bad);
  background: rgba(255, 107, 122, 0.12);
}

.status.unchanged {
  color: var(--muted);
  background: rgba(154, 168, 184, 0.11);
}

.empty-cell {
  color: var(--muted);
  text-align: center;
  padding: 36px;
}

.app-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 32px;
  border-top: 1px solid var(--line);
  background: var(--surface);
  color: var(--body);
}

.app-footer strong {
  display: block;
  color: var(--text);
  font-size: 18px;
  font-weight: 600;
}

.footer-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.footer-meta span,
.footer-meta a {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg);
  color: var(--muted);
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.footer-meta a {
  color: var(--text);
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.top-actions a,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bg);
  color: var(--text);
  font-weight: 700;
  text-decoration: none;
}

.secondary-button {
  min-height: 44px;
  cursor: pointer;
}

.auth-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
  background: var(--bg);
}

.auth-shell {
  width: min(520px, 100%);
}

.auth-panel {
  display: grid;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 32px;
  box-shadow: var(--shadow);
}

.auth-panel h1 {
  margin: 0;
  font-size: 34px;
  line-height: 1.1;
}

.auth-status {
  margin: 0;
  color: var(--body);
  line-height: 1.6;
}

.auth-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.auth-actions button {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--ink);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

.auth-actions button {
  min-height: 46px;
  padding: 0 18px;
}

.auth-actions .secondary-button {
  background: var(--bg);
  color: var(--text);
}

.auth-actions button:disabled,
.member-actions button:disabled {
  cursor: default;
  opacity: 0.45;
}

.error-text {
  color: var(--bad);
}

.admin-shell {
  min-height: 100vh;
  background: var(--bg);
}

.admin-content {
  display: grid;
  gap: 0;
  padding: 24px 32px;
}

.member-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.member-actions button {
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fffdf8;
  color: var(--text);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  white-space: nowrap;
}

.member-actions button:hover:not(:disabled) {
  border-color: var(--accent);
  background: rgba(42, 163, 135, 0.12);
  color: var(--accent);
}

.member-actions button:disabled {
  border-color: #d8d0c2;
  background: #f3eee3;
  color: #3f3a34;
  opacity: 1;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 12px;
  font-weight: 800;
  text-transform: capitalize;
}

.status-pill.approved {
  background: rgba(42, 163, 135, 0.16);
  color: var(--accent);
}

.status-pill.pending {
  background: rgba(216, 163, 85, 0.18);
  color: #8f5d16;
}

.status-pill.blocked {
  background: rgba(255, 107, 122, 0.14);
  color: var(--bad);
}

@media (max-width: 920px) {
  .query-band,
  .time-converter,
  .workspace {
    grid-template-columns: 1fr;
  }

  .timeline-panel {
    max-height: 260px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .topbar,
  .app-footer,
  .table-tools {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-meta {
    justify-content: flex-start;
  }
}
