:root {
  color-scheme: dark;
  --bg: #0d1016;
  --surface: #151a23;
  --surface-muted: #1b222e;
  --line: #2a3443;
  --line-strong: #3a4658;
  --text: #edf3fb;
  --muted: #9aa9bc;
  --accent: #5da2ff;
  --accent-soft: rgba(93, 162, 255, 0.16);
  --green: #35d399;
  --green-soft: rgba(53, 211, 153, 0.16);
  --amber: #f5b849;
  --amber-soft: rgba(245, 184, 73, 0.16);
  --red: #fb7185;
  --red-soft: rgba(251, 113, 133, 0.16);
  --ink: #080b10;
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.38);
  --shadow-soft: 0 10px 28px rgba(0, 0, 0, 0.24);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(93, 162, 255, 0.12), transparent 340px),
    radial-gradient(circle at 82% 8%, rgba(53, 211, 153, 0.08), transparent 300px),
    linear-gradient(180deg, #111722 0, var(--bg) 260px),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

[hidden] {
  display: none !important;
}

.login-view {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(93, 162, 255, 0.16), transparent 42%),
    linear-gradient(315deg, rgba(53, 211, 153, 0.11), transparent 42%),
    var(--bg);
}

.login-panel {
  width: min(430px, 100%);
  padding: 34px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.brand {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  font-weight: 900;
}

.login-panel h1 {
  margin: 18px 0 8px;
  font-size: 2rem;
  line-height: 1.12;
}

.login-panel p {
  margin: 0 0 24px;
  color: var(--muted);
}

#login-form {
  display: grid;
  gap: 10px;
}

label {
  color: var(--muted);
  font-weight: 800;
}

input,
select {
  min-height: 40px;
  width: 100%;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #101620;
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

input:focus,
select:focus,
button:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.18);
  outline-offset: 1px;
  border-color: var(--accent);
}

#login-form button,
.primary {
  min-height: 40px;
  border: 0;
  border-radius: 8px;
  background: var(--accent);
  color: #06101f;
  padding: 0 16px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.18);
  transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

#login-form button:hover,
.primary:hover {
  background: #7ab5ff;
  box-shadow: 0 10px 22px rgba(93, 162, 255, 0.24);
}

.danger-button {
  min-height: 40px;
  border: 0;
  border-radius: 8px;
  background: var(--red);
  color: #1b070b;
  padding: 0 16px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(194, 65, 59, 0.16);
  transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.danger-button:hover {
  background: #a93631;
  box-shadow: 0 10px 22px rgba(194, 65, 59, 0.22);
}

.primary:disabled,
.danger-button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.message {
  min-height: 22px;
  margin-top: 14px !important;
  color: var(--red) !important;
}

.dashboard {
  min-height: 100vh;
  display: block;
}

.main-nav {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 68px;
  padding: 12px 22px;
  background: rgba(13, 16, 22, 0.92);
  color: var(--text);
  z-index: 20;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(10px);
}

.nav-title {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.nav-title .brand {
  background: var(--text);
  color: var(--ink);
}

.nav-tabs {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: thin;
}

.tab,
.logout,
.toolbar button {
  min-height: 38px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  color: inherit;
  padding: 0 12px;
  font-weight: 800;
}

.tab {
  white-space: nowrap;
  color: var(--muted);
}

.tab.active,
.tab:hover {
  background: var(--accent-soft);
  color: #dbeafe;
}

.logout {
  margin-left: auto;
  border-color: var(--line);
  background: #101620;
  color: var(--text);
  white-space: nowrap;
}

.logout:hover,
.toolbar button:hover,
.compare-header button:hover {
  border-color: var(--line-strong);
  background: #202838;
}

.content {
  min-width: 0;
  padding: 22px;
}

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

.eyebrow {
  display: block;
  margin-bottom: 4px;
  color: #7f90a6;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

h2 {
  margin: 0;
  font-size: 1.8rem;
  line-height: 1.15;
}

.view {
  display: none;
}

.view.active {
  display: block;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.metrics article,
.panel,
.table {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.metrics article {
  min-height: 108px;
  display: grid;
  align-content: space-between;
  padding: 18px;
  background:
    linear-gradient(180deg, #18202b 0, #141923 100%),
    var(--surface);
}

.metrics span {
  color: var(--muted);
  font-weight: 850;
}

.metrics strong {
  font-size: 2.1rem;
  line-height: 1;
  color: #8ec5ff;
}

#monitoring-tab .metrics article {
  min-height: 82px;
  padding: 14px 18px;
}

#monitoring-tab .metrics strong {
  font-size: 1.9rem;
}

.columns {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: 18px;
}

.panel {
  overflow: hidden;
}

.panel h3 {
  min-height: 50px;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
  font-size: 1rem;
  background: var(--surface-muted);
}

.toolbar {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto auto;
  gap: 10px;
  margin-bottom: 12px;
}

.toolbar button {
  border-color: var(--line);
  background: var(--surface);
  color: var(--text);
}

.compare-toolbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.transfer-toolbar select {
  width: min(300px, 100%);
}

.selection-summary {
  margin-right: auto;
  color: var(--text);
  font-weight: 900;
}

.inline-check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 850;
}

.inline-check input,
.select-cell input {
  width: 16px;
  min-height: 16px;
  margin: 0;
}

.transfer-message {
  min-height: 24px;
  margin-bottom: 10px;
  color: var(--muted);
  font-weight: 800;
}

.transfer-panel {
  margin-top: 18px;
}

.compare-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
}

.compare-panel {
  min-width: 0;
  display: grid;
  gap: 12px;
}

.compare-header {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 2px;
}

.compare-header h3 {
  margin: 0;
  font-size: 1.1rem;
  color: #8ec5ff;
}

.compare-header button {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--text);
  padding: 0 12px;
  font-weight: 800;
}

.breadcrumb {
  min-height: 34px;
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  color: var(--muted);
  font-weight: 800;
  word-break: break-all;
  background: transparent;
}

.table {
  overflow-x: auto;
  overflow-y: hidden;
}

.row {
  display: grid;
  gap: 8px;
  align-items: center;
  min-height: 56px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
}

.row:hover {
  background: rgba(93, 162, 255, 0.045);
}

.row:last-child {
  border-bottom: 0;
}

.health-row {
  grid-template-columns: 14px minmax(0, 1fr) auto;
}

.health-name {
  min-width: 0;
  overflow-wrap: anywhere;
}

.health-message {
  margin-top: 6px;
  color: var(--red);
  font-size: 0.84rem;
  font-weight: 800;
  white-space: normal;
}

.usage-block {
  display: grid;
  gap: 5px;
  margin-top: 8px;
  max-width: 460px;
}

.usage-label,
.usage-s3 {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.usage-bar {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #273142;
}

.usage-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--accent));
}

.usage-percent {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
}

.browser-row {
  grid-template-columns: 22px 32px minmax(0, 1fr) minmax(64px, 76px) minmax(112px, 126px);
  min-width: 0;
}

.browser-header {
  display: grid;
  grid-template-columns: 22px 32px minmax(0, 1fr) minmax(64px, 76px) minmax(112px, 126px);
  gap: 8px;
  align-items: center;
  min-width: 0;
  min-height: 38px;
  padding: 0 12px;
  border-bottom: 1px solid var(--line);
  background: #1b222e;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.sort-button {
  width: 100%;
  min-height: 30px;
  border: 0;
  background: transparent;
  color: inherit;
  padding: 0;
  text-align: left;
  font: inherit;
  font-weight: 900;
  text-transform: uppercase;
}

.sort-button:hover,
.sort-button.active {
  color: var(--accent);
}

.browser-header .sort-button:nth-child(3) {
  text-align: left;
}

.browser-header .sort-button:nth-child(4) {
  text-align: right;
}

.job-row {
  grid-template-columns: 80px minmax(0, 1fr) 110px 80px 120px;
}

.manual-transfer-row {
  grid-template-columns: 64px minmax(0, 1fr) 110px minmax(130px, 180px) 126px;
}

.monitoring-actions {
  display: grid;
  grid-template-columns: minmax(160px, 1fr) minmax(210px, 260px) auto auto;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
}

.monitoring-actions .transfer-message {
  min-height: 0;
  margin-bottom: 0;
}

.monitoring-actions button,
.modal-close {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #101620;
  color: var(--text);
  padding: 0 12px;
  font-weight: 800;
}

.monitoring-actions button:hover,
.modal-close:hover {
  border-color: var(--line-strong);
  background: #202838;
}

.monitoring-actions .primary {
  border: 0;
  background: var(--accent);
  color: #06101f;
}

.monitoring-board {
  overflow: visible;
}

.monitoring-site-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 12px;
  padding: 12px;
}

.monitoring-site-card {
  display: grid;
  gap: 10px;
  min-height: 104px;
  overflow: hidden;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #101620;
}

.monitoring-site-card:hover {
  border-color: var(--line-strong);
  background: #131b28;
}

.monitoring-site-card.is-disabled {
  opacity: 0.74;
}

.monitoring-card-top {
  display: grid;
  grid-template-columns: 12px minmax(0, 1fr) minmax(58px, auto);
  gap: 8px;
  align-items: center;
}

.monitoring-card-top strong {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.monitoring-card-top .pill {
  min-width: 58px;
  min-height: 26px;
  padding: 0 8px;
  font-size: 0.78rem;
}

.monitoring-card-meta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
}

.monitoring-category-chip,
.monitoring-card-meta > span:not(.monitoring-category-chip) {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  min-width: 0;
  max-width: 100%;
  padding: 0 8px;
  border-radius: 999px;
  background: #222b38;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.monitoring-card-foot {
  min-width: 0;
}

.monitoring-card-foot .row-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.monitoring-card-foot .row-actions button {
  min-height: 30px;
  padding: 0 8px;
  font-size: 0.78rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: start center;
  padding: 72px 18px 24px;
  overflow-y: auto;
  background: rgba(3, 7, 18, 0.74);
  backdrop-filter: blur(8px);
}

.modal-panel {
  width: min(760px, 100%);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.modal-header {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
  background: var(--surface-muted);
}

.modal-header h3 {
  min-height: 0;
  padding: 0;
  border-bottom: 0;
  background: transparent;
}

.modal-close {
  width: 38px;
  padding: 0;
  font-size: 1.25rem;
}

.monitoring-form {
  display: grid;
  gap: 11px;
  padding: 18px;
}

.category-manager {
  display: grid;
  gap: 12px;
  padding: 0 18px 18px;
  border-top: 1px solid var(--line);
}

.category-manager h4 {
  margin: 16px 0 0;
  font-size: 0.95rem;
}

.category-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 46px 76px;
  gap: 8px;
}

.category-form button {
  grid-column: span 1;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #101620;
  color: var(--text);
  padding: 0 10px;
  font-weight: 800;
}

.category-form .primary {
  border: 0;
  background: var(--accent);
  color: #06101f;
}

.category-list {
  display: grid;
  gap: 8px;
}

.category-item {
  display: grid;
  grid-template-columns: 14px minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  min-height: 36px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #101620;
}

.category-swatch {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--accent);
}

.category-actions {
  display: flex;
  gap: 6px;
}

.category-actions button {
  min-height: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--text);
  padding: 0 8px;
  font-size: 0.8rem;
  font-weight: 800;
}

.panel-filter {
  width: min(220px, 100%);
  min-height: 34px;
  margin-left: auto;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: end;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.form-actions button:not(.primary),
.row-actions button {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #101620;
  color: var(--text);
  padding: 0 12px;
  font-weight: 800;
}

.form-actions button:not(.primary):hover,
.row-actions button:hover {
  border-color: var(--line-strong);
  background: #202838;
}

.monitoring-site-row {
  grid-template-columns: 14px minmax(0, 1fr) 120px 108px 92px 132px minmax(152px, auto);
}

.monitoring-check-row {
  grid-template-columns: minmax(160px, 1fr) 96px 90px minmax(150px, 0.8fr) 132px;
}

.monitoring-check-row .health-message {
  grid-column: 1 / -1;
  margin-top: 0;
}

.row-actions {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px;
}

.row-actions .danger-link {
  color: var(--red);
}

.transfer-progress {
  display: grid;
  gap: 5px;
}

.name {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.browser-row .name {
  overflow: visible;
  text-overflow: clip;
  white-space: normal;
  overflow-wrap: anywhere;
}

.browser-row .name strong,
.open-dir {
  color: var(--text);
}

.browser-row .name strong {
  font-weight: 850;
}

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

.meta {
  font-size: 0.86rem;
}

.size-cell,
.date-cell {
  white-space: nowrap;
}

.size-cell {
  text-align: right;
}

.file-icon {
  position: relative;
  display: inline-grid;
  width: 28px;
  height: 32px;
  place-items: end center;
  justify-self: center;
  padding-bottom: 5px;
  border-radius: 6px;
  background: #283342;
  color: #fff;
  font-size: 0.56rem;
  font-weight: 950;
  line-height: 1;
  overflow: hidden;
}

.file-icon::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  border-top: 9px solid rgba(255, 255, 255, 0.8);
  border-left: 9px solid rgba(23, 33, 29, 0.18);
}

.folder-icon {
  width: 32px;
  height: 26px;
  place-self: center;
  align-self: center;
  padding: 0;
  border-radius: 6px;
  background: #d79522;
  box-shadow: inset 0 -7px 0 rgba(84, 55, 11, 0.32);
}

.folder-icon::before {
  top: -5px;
  left: 2px;
  right: auto;
  width: 14px;
  height: 7px;
  border: 0;
  border-radius: 4px 4px 0 0;
  background: #edbd5d;
}

.folder-icon-backup {
  background: #b76114;
}

.folder-icon-cloud {
  background: #3e6ea8;
}

.folder-icon-code,
.folder-icon-config {
  background: #2e5f90;
}

.folder-icon-image {
  background: #2d8c6f;
}

.folder-icon-document,
.folder-icon-download {
  background: #7b6f3a;
}

.folder-icon-database {
  background: #2d7a4f;
}

.folder-icon-log,
.folder-icon-temp {
  background: #657069;
}

.folder-icon-test,
.folder-icon-public {
  background: #5943a6;
}

.file-icon-image,
.file-icon-vector {
  background: #2d8c6f;
}

.file-icon-video {
  background: #5943a6;
}

.file-icon-audio {
  background: #a13f75;
}

.file-icon-archive,
.file-icon-disk,
.file-icon-backup {
  background: #8a5a22;
}

.file-icon-code,
.file-icon-web,
.file-icon-config {
  background: #2e5f90;
}

.file-icon-document,
.file-icon-presentation,
.file-icon-email,
.file-icon-calendar {
  background: #3e6ea8;
}

.file-icon-sheet,
.file-icon-database {
  background: #2d7a4f;
}

.file-icon-pdf {
  background: #b4232d;
}

.file-icon-font,
.file-icon-model,
.file-icon-cad {
  background: #5943a6;
}

.file-icon-certificate,
.file-icon-key {
  background: #b76114;
}

.file-icon-executable {
  background: #17211d;
}

.file-icon-data,
.file-icon-subtitle,
.file-icon-torrent {
  background: #657069;
}

.file-icon-default {
  background: #657069;
}

.open-dir {
  border: 0;
  background: transparent;
  color: var(--text);
  padding: 0;
  text-align: left;
  font-weight: 850;
  white-space: normal;
  overflow-wrap: anywhere;
}

.open-dir:hover {
  color: #93c5fd;
}

.select-cell {
  display: inline-grid;
  place-items: center;
}

.select-cell input:checked {
  accent-color: var(--accent);
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 82px;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 900;
  background: #222b38;
  color: var(--muted);
}

.pill.completed,
.pill.ok {
  background: var(--green-soft);
  color: var(--green);
}

.pill.active,
.pill.progress,
.pill.waiting {
  background: var(--amber-soft);
  color: var(--amber);
}

.pill.failed,
.pill.error {
  background: var(--red-soft);
  color: var(--red);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--red);
}

.dot.ok-dot {
  background: var(--green);
}

.empty,
.error-text {
  padding: 22px;
  color: var(--muted);
}

.error-text {
  color: var(--red);
}

@media (max-width: 1200px) {
  .compare-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .main-nav {
    position: static;
    flex-wrap: wrap;
  }

  .nav-tabs {
    order: 3;
    width: 100%;
  }

  .metrics,
  .columns {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .content {
    padding: 18px;
  }

  .main-nav {
    gap: 12px;
    padding: 12px 18px;
  }

  .nav-title {
    width: 100%;
  }

  .logout {
    margin-left: 0;
  }

  .topbar,
  .toolbar,
  .transfer-toolbar,
  .monitoring-actions,
  .compare-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .metrics,
  .columns,
  .health-row,
  .manual-transfer-row,
  .monitoring-layout,
  .form-grid,
  .category-form,
  .monitoring-site-row,
  .monitoring-check-row,
  .job-row {
    grid-template-columns: 1fr;
  }

  .row-actions {
    justify-content: flex-start;
  }

  .monitoring-card-foot {
    display: grid;
    grid-template-columns: 1fr;
  }

  .modal-backdrop {
    padding: 18px;
  }

  .browser-header {
    display: none;
  }

  .browser-row {
    grid-template-columns: 22px 36px minmax(0, 1fr);
    min-width: 0;
  }

  .browser-row .size-cell,
  .browser-row .date-cell {
    grid-column: 3;
    text-align: left;
  }
}
