:root {
  --bg: #f4f7fb;
  --bg-soft: #edf2f8;
  --surface: #ffffff;
  --surface-soft: #f8fbff;
  --border: #d8e1ee;
  --text: #1f2a3d;
  --muted: #5f6f86;
  --brand: #567ce0;
  --brand-hover: #456edb;
  --brand-soft: #e9f0ff;
  --slate: #55627e;
  --green: #7faa2f;
  --green-soft: #eef6dd;
  --danger: #d94b4b;
  --footer: #2d3a52;
  --shadow: 0 10px 30px rgba(49, 76, 124, 0.08);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --maxw: 1240px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: linear-gradient(180deg, #f7faff 0%, #f3f7fc 100%);
  color: var(--text);
}

a { color: inherit; }

.page {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px 60px;
}

/* Header standard */

.topbar {
  padding: 22px 0;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px 20px;
  box-shadow: var(--shadow);
}

.brand-block {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  text-decoration: none;
}

.brand-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

.brand-logo img {
  display: block;
  height: 42px;
  width: 42px;
  border-radius: 10px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.brand-title {
  margin: 0;
  font-size: 28px;
  font-weight: 800;
  color: var(--slate);
  line-height: 1.05;
}

.brand-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
}

.nav a:hover,
.nav a.active {
  color: var(--brand);
}

.nav-action {
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--brand);
  color: #fff !important;
}

.nav-action:hover {
  background: var(--brand-hover);
}

/* Layout */

.layout {
  display: grid;
  grid-template-columns: 0.86fr 1.44fr;
  gap: 22px;
  align-items: start;
  padding-top: 18px;
}

.hero-card,
.cloud-card {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 36px 38px;
}

.cloud-card {
  padding: 24px;
}

.pill {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
}

h1 {
  margin: 0 0 14px;
  font-size: 44px;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

h2 {
  margin: 0 0 8px;
  font-size: 30px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h3 {
  margin: 0 0 12px;
  font-size: 18px;
}

.lead {
  margin: 0 0 18px;
  color: #5a6b84;
  font-size: 17px;
  line-height: 1.68;
}

/* Status */

.status-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 20px 0;
}

.status-card,
.mini-card,
.result-box,
.folder-bar,
.search-bar {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.status-card {
  padding: 14px;
}

.status-card span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 6px;
  font-weight: 700;
}

.status-card strong {
  color: var(--slate);
  font-size: 15px;
}

/* Forms */

.login-box {
  margin-top: 24px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

.result-box {
  margin-top: 18px;
  padding: 16px;
}

.result-title {
  color: var(--slate);
  font-weight: 800;
  margin-bottom: 8px;
}

input,
select {
  width: 100%;
  height: 46px;
  border: 1px solid #cfd9ea;
  border-radius: 12px;
  padding: 0 14px;
  font-size: 15px;
  margin-bottom: 12px;
  color: var(--text);
  background: #fff;
}

button,
.btn-like {
  min-height: 46px;
  border: 0;
  border-radius: 12px;
  background: var(--brand);
  color: #fff;
  padding: 0 18px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(86, 124, 224, 0.18);
}

button:hover,
.btn-like:hover {
  background: var(--brand-hover);
}

button.secondary {
  background: #fff;
  color: var(--brand);
  border: 1px solid #bfd0f6;
  box-shadow: none;
}

button.secondary:hover {
  background: var(--brand-soft);
}

button.danger {
  background: var(--danger);
  box-shadow: 0 10px 24px rgba(217, 75, 75, 0.14);
}

button.small,
a.small {
  min-height: 34px;
  padding: 0 10px;
  font-size: 13px;
  border-radius: 10px;
}

.login-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.message {
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

/* Server info */

.server-info {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.server-info strong {
  color: var(--text);
}

.badge-ok,
.badge-off {
  display: inline-flex;
  align-items: center;
  padding: 4px 9px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 8px;
}

.badge-ok {
  background: #e9f9ef;
  color: #217a3b;
}

.badge-off {
  background: #fff0f0;
  color: #b42323;
}

/* Cloud area */

.cloud-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.cloud-top p,
.panel-title p {
  color: var(--muted);
  margin: 6px 0 0;
  line-height: 1.5;
}

.tabs {
  display: flex;
  gap: 10px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 14px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.tab {
  min-height: 38px;
  background: var(--surface);
  color: var(--slate);
  box-shadow: none;
  border: 1px solid var(--border);
}

.tab.active {
  background: var(--brand);
  color: white;
  border-color: var(--brand);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.folder-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  margin-bottom: 16px;
}

.folder-path-wrap {
  min-width: 0;
}

.folder-label {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 7px;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
}

.crumb {
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: white;
  color: var(--brand);
  border: 1px solid #bfd0f6;
  box-shadow: none;
  font-size: 13px;
}

.crumb.active {
  background: var(--brand);
  color: white;
  border-color: var(--brand);
}

.crumb-separator {
  color: #91a0b8;
  font-weight: 800;
}

.current-folder-hidden {
  display: none;
}

.search-bar {
  display: grid;
  grid-template-columns: 1fr 160px 170px auto;
  gap: 10px;
  align-items: center;
  padding: 14px 16px;
  margin-bottom: 16px;
}

.search-bar input,
.search-bar select {
  margin-bottom: 0;
}

.actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 22px;
}

.mini-card {
  padding: 16px;
}

/* Tables */

.panel-title {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.table {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}

.table-head,
.file-row {
  display: grid;
  grid-template-columns: 1.35fr 0.45fr 0.5fr 1.35fr;
  gap: 10px;
  align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid #e2e8f2;
}

.table-head {
  background: var(--surface-soft);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

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

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

.file-actions a,
.file-actions button {
  min-height: 34px;
  padding: 0 10px;
  font-size: 13px;
  border-radius: 10px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.file-actions a {
  background: var(--brand);
  color: white;
  font-weight: 700;
}

.file-actions a:hover {
  background: var(--brand-hover);
}

.folder-name-link {
  color: var(--text);
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
}

.folder-name-link:hover {
  color: var(--brand);
  text-decoration: underline;
}

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

/* Responsive */

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

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

  .nav {
    flex-wrap: wrap;
  }
}

@media (max-width: 760px) {
  .page {
    padding: 0 14px 40px;
  }

  .hero-card,
  .cloud-card {
    padding: 22px;
  }

  h1 {
    font-size: 34px;
  }

  .actions,
  .status-grid,
  .search-bar {
    grid-template-columns: 1fr;
  }

  .table-head,
  .file-row {
    grid-template-columns: 1fr;
  }
}

.modal.hidden {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(31, 42, 61, 0.34);
  backdrop-filter: blur(6px);
}

.modal-card {
  position: relative;
  width: min(620px, 100%);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 70px rgba(49, 76, 124, 0.22);
  padding: 24px;
}

.modal-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.modal-head h2 {
  margin-top: 8px;
}

.modal-head p {
  margin: 6px 0 0;
  color: var(--muted);
  word-break: break-word;
}

.modal-body {
  display: grid;
  gap: 10px;
}

.field-label {
  color: var(--slate);
  font-size: 14px;
  font-weight: 800;
}

.share-result {
  margin-top: 14px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.login-note {
  margin: -4px 0 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.no-node-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 24px;
  margin-bottom: 18px;
}

.no-node-box.hidden {
  display: none;
}

.no-node-box p {
  color: var(--muted);
  line-height: 1.65;
  margin: 8px 0 0;
}

.security-actions {
  margin-bottom: 18px;
}

.subhead {
  margin: 22px 0 12px;
  color: var(--slate);
}

.preview-card {
  width: min(920px, 100%);
}

.preview-body {
  min-height: 320px;
  max-height: 70vh;
  overflow: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: #fff;
  padding: 16px;
}

.preview-body img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.preview-body iframe {
  width: 100%;
  height: 65vh;
  border: 0;
  border-radius: 12px;
}

.preview-text {
  white-space: pre-wrap;
  font-family: Consolas, monospace;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text);
}

.file-actions {
  position: relative;
}

.more-menu {
  position: absolute;
  right: 0;
  top: 40px;
  z-index: 20;
  min-width: 180px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(49, 76, 124, 0.16);
  display: grid;
  gap: 8px;
}

.more-menu.hidden {
  display: none;
}

.more-menu button {
  width: 100%;
  justify-content: flex-start;
}

/* Visual polish layer */

.layout {
  grid-template-columns: 0.72fr 1.58fr;
}

.hero-card {
  padding: 28px;
  position: sticky;
  top: 18px;
}

.hero-card h1 {
  font-size: 36px;
  letter-spacing: -0.025em;
}

.hero-card .lead {
  font-size: 15.5px;
  line-height: 1.62;
  margin-bottom: 14px;
}

.cloud-card {
  padding: 26px;
}

.cloud-top {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.cloud-top h2 {
  font-size: 34px;
}

.status-grid {
  margin: 16px 0;
}

.status-card {
  box-shadow: none;
  background: var(--surface-soft);
}

.login-box {
  margin-top: 18px;
  padding-top: 18px;
}

.login-box h2 {
  font-size: 22px;
}

.result-box {
  box-shadow: none;
  background: var(--surface-soft);
}

.tabs {
  margin-top: 18px;
}

.tab {
  border-radius: 999px;
  padding: 0 16px;
}

.folder-bar,
.search-bar {
  box-shadow: none;
  background: var(--surface-soft);
}

.table {
  box-shadow: 0 8px 22px rgba(49, 76, 124, 0.06);
}

.file-row {
  transition: background 0.15s ease;
}

.file-row:hover {
  background: #f8fbff;
}

.file-actions {
  justify-content: flex-end;
}

.file-actions button,
.file-actions a {
  white-space: nowrap;
}

@media (max-width: 1080px) {
  .hero-card {
    position: static;
  }
}

/* File list usability */

#tab-files .table {
  max-height: 62vh;
  overflow-y: auto;
  resize: vertical;
  min-height: 320px;
}

#tab-files .table-head {
  position: sticky;
  top: 0;
  z-index: 5;
}

#fileList {
  min-height: 180px;
}

.file-row {
  min-height: 58px;
}

#tab-files .table::-webkit-scrollbar {
  width: 10px;
}

#tab-files .table::-webkit-scrollbar-track {
  background: #edf2f8;
  border-radius: 999px;
}

#tab-files .table::-webkit-scrollbar-thumb {
  background: #bfd0f6;
  border-radius: 999px;
}

#tab-files .table::-webkit-scrollbar-thumb:hover {
  background: var(--brand);
}

.empty-state {
  padding: 34px 22px;
  text-align: center;
  color: var(--muted);
  background: #fff;
}

.empty-state strong {
  display: block;
  color: var(--slate);
  font-size: 18px;
  margin-bottom: 8px;
}

.empty-state p {
  margin: 0;
  line-height: 1.55;
}

.empty-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--brand-soft);
  font-size: 28px;
}

/* Compact workspace actions */
#tab-files .actions {
  gap: 10px;
  margin-bottom: 14px;
}

#tab-files .mini-card {
  padding: 12px;
  border-radius: 14px;
  background: #fbfdff;
}

#tab-files .mini-card h3 {
  margin: 0 0 8px;
  font-size: 14px;
}

#tab-files .mini-card input {
  min-height: 36px;
  margin-bottom: 8px;
  font-size: 13px;
}

#tab-files .mini-card button {
  min-height: 34px;
  padding: 0 12px;
  font-size: 13px;
}

#tab-files .search-bar {
  margin-bottom: 12px;
}

#tab-files .table {
  margin-top: 4px;
}

/* Unified file cabinet visual polish */
.workspace,
.main-panel,
.cloud-panel,
.tab-panel {
  border-radius: 24px;
}

.panel-title {
  border-bottom: 1px solid var(--border);
  padding-bottom: 18px;
  margin-bottom: 18px;
}

.panel-title h2 {
  font-size: 30px;
  letter-spacing: -0.03em;
}

.tabs {
  padding-bottom: 14px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.tab {
  min-height: 38px;
  padding: 0 17px;
  border-radius: 999px;
  font-weight: 800;
  background: #fff;
  border: 1px solid #cbd8f0;
}

.tab.active {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  box-shadow: 0 8px 18px rgba(86, 124, 224, 0.22);
}

.current-folder,
.search-bar,
.actions,
.table {
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255,255,255,0.72);
}

.current-folder {
  padding: 14px 16px;
  margin-bottom: 16px;
}

.search-bar {
  padding: 14px;
  margin-bottom: 16px;
}

.actions {
  padding: 0;
  border: none;
  background: transparent;
  gap: 14px;
}

#tab-files .mini-card {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255,255,255,0.78);
  box-shadow: none;
}

.table {
  overflow: hidden;
  margin-top: 14px;
}

.table-head {
  background: #f5f8fd;
  border-bottom: 1px solid var(--border);
  color: var(--slate);
}

.file-row {
  min-height: 58px;
  border-bottom: 1px solid #edf2fb;
}

.file-row:hover {
  background: #f8fbff;
}

.file-actions {
  gap: 7px;
}

.file-actions button,
.file-actions a {
  min-height: 34px;
  border-radius: 10px;
}

.more-menu {
  border-radius: 16px;
  box-shadow: 0 18px 45px rgba(49, 76, 124, 0.18);
}

.empty-state {
  border-radius: 18px;
}

/* Make secondary panels look like the files cabinet */
#tab-trash .table,
#tab-shares .table,
#tab-versions .table,
#tab-server .result-box,
#tab-security .result-box {
  border-radius: 20px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.72);
}

/* Sidebar polish */
.sidebar,
.cloud-card:first-child {
  border-radius: 24px;
}

.login-box {
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-top: 16px;
}

.login-actions {
  gap: 8px;
}

#loginBtn {
  width: 100%;
  justify-content: center;
  min-height: 42px;
  font-weight: 800;
}

#registerBtn,
#logoutBtn {
  flex: 1;
  min-height: 36px;
}

#changePasswordBtn,
#clearSessionBtn {
  background: transparent;
  border-color: transparent;
  color: var(--brand);
  padding: 0;
  min-height: 28px;
  box-shadow: none;
}

#changePasswordBtn:hover,
#clearSessionBtn:hover {
  background: transparent;
  text-decoration: underline;
}

.result-box {
  border-radius: 20px;
}

.result-title {
  font-size: 17px;
  margin-bottom: 12px;
}

#nodesList {
  font-size: 13px;
}

#nodesList button {
  min-height: 32px;
  padding: 0 10px;
  font-size: 12px;
}

#serverInfo {
  font-size: 13px;
  line-height: 1.5;
}

#directLinkOutput {
  font-size: 13px;
}

/* Scalable nodes list */
#nodesList {
  max-height: 260px;
  overflow-y: auto;
  padding-right: 4px;
}

#nodesList::-webkit-scrollbar {
  width: 6px;
}

#nodesList::-webkit-scrollbar-thumb {
  background: #cbd8f0;
  border-radius: 999px;
}

#nodesList::-webkit-scrollbar-track {
  background: transparent;
}

#nodesList [data-node-health-target] {
  min-height: auto;
}

/* UX upgrade: clean breadcrumb + livelier file table */
.folder-bar {
  padding: 12px 14px;
  align-items: center;
}

.folder-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .04em;
  opacity: .72;
  margin-bottom: 8px;
}

.breadcrumbs {
  gap: 4px;
}

.crumb {
  min-height: 26px;
  padding: 0 4px;
  border: 0;
  background: transparent;
  color: #34425f;
  box-shadow: none;
  font-size: 14px;
  font-weight: 700;
}

.crumb:hover {
  color: var(--brand);
  background: rgba(86,124,224,.08);
}

.crumb.active {
  background: transparent;
  color: var(--brand);
  border: 0;
  cursor: default;
}

.crumb-separator {
  color: #9aa9bf;
  font-weight: 700;
  padding: 0 2px;
}

#backFolderBtn {
  border-radius: 12px;
  min-height: 34px;
  padding: 0 14px;
}

.file-row {
  transition: background .15s ease, transform .15s ease;
}

.file-row:hover {
  background: rgba(86,124,224,.055);
  transform: translateY(-1px);
}

.folder-name-link {
  font-weight: 800;
}


/* Fix: dropdown menu must not be clipped by file table scroll area */
#tab-files .table {
  overflow-y: visible;
  resize: none;
  max-height: none;
}

.file-row {
  position: relative;
  overflow: visible;
}

.file-actions {
  position: relative;
  overflow: visible;
  z-index: 2;
}

.file-actions:has(.more-menu:not(.hidden)) {
  z-index: 50;
}

.more-menu {
  z-index: 999;
}


/* Fix: file action menu is rendered above the table, not inside row flow */
.more-menu.is-floating {
  position: fixed !important;
  display: grid !important;
  z-index: 99999 !important;
  min-width: 210px;
  max-width: 240px;
}

.more-menu.is-floating.hidden {
  display: none !important;
}


#tab-files.drag-over {
  outline: 2px dashed #567CE0;
  outline-offset: -6px;
  background: rgba(86,124,224,0.05);
}


#tab-files.drag-over {
  outline: 2px dashed #567CE0;
  outline-offset: -6px;
  background: rgba(86,124,224,0.05);
}


.file-name-cell {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.file-select {
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.bulk-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  margin: 0 0 12px;
  border: 1px solid #bfd0f6;
  border-radius: 16px;
  background: rgba(86,124,224,.08);
}

.bulk-actions.hidden {
  display: none;
}


.file-row.selected {
  background: rgba(86,124,224,.12);
}

.file-row.selected:hover {
  background: rgba(86,124,224,.16);
}

.file-row {
  cursor: default;
}

.file-row .file-name-cell {
  cursor: pointer;
}


.bulk-buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}


.file-name-cell > span:last-child {
  min-width: 0;
  max-width: 100%;
  line-height: 1.25;
  word-break: break-word;
  overflow-wrap: anywhere;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.file-row {
  align-items: center;
}


/* Fix: readable long filenames, no hidden clamp */
.file-name-cell > span:last-child {
  display: block !important;
  -webkit-line-clamp: unset !important;
  -webkit-box-orient: unset !important;
  overflow: visible !important;
  white-space: normal !important;
  word-break: break-word !important;
  overflow-wrap: anywhere !important;
  line-height: 1.25 !important;
}

.file-row {
  min-height: 64px;
}


.folder-stats {
  margin: -4px 2px 12px;
  color: #6b7890;
  font-size: 13px;
  font-weight: 700;
}


.shutdown-box {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.shutdown-box p {
  margin: 8px 0 0;
  color: #6b7890;
  font-size: 13px;
  line-height: 1.45;
}

.shutdown-box .danger {
  width: 100%;
  justify-content: center;
}

