:root {
  --bg: #f4f7fb;
  --surface: #ffffff;
  --surface-soft: #f8fafc;
  --surface-muted: #eef3f9;
  --border: #dbe5f0;
  --border-strong: #cad7e6;
  --text: #10223a;
  --text-soft: #51637a;
  --text-faint: #7b8ba1;
  --primary: #2563eb;
  --primary-strong: #1d4ed8;
  --primary-soft: rgba(37, 99, 235, 0.12);
  --success: #16a34a;
  --success-soft: rgba(22, 163, 74, 0.14);
  --shadow-sm: 0 8px 20px rgba(17, 24, 39, 0.05);
  --shadow-md: 0 18px 40px rgba(15, 23, 42, 0.08);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --sidebar-width: 260px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f8fbff 0%, #f4f7fb 42%, #eef3f9 100%);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a,
button,
input {
  font: inherit;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: 0;
  background: none;
  cursor: pointer;
}

input {
  border: 0;
  background: transparent;
  color: inherit;
  outline: none;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(248, 251, 255, 0.82);
  border-bottom: 1px solid rgba(219, 229, 240, 0.8);
}

.header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header-inner {
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border: 1px solid rgba(59, 130, 246, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.brand-mark svg {
  width: 22px;
  height: 22px;
  stroke: var(--primary);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-text {
  font-size: 1.02rem;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-link,
.nav-button,
.primary-button,
.secondary-button,
.upload-trigger {
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease, border-color 180ms ease, color 180ms ease, opacity 180ms ease;
}

.nav-link {
  color: var(--text-soft);
  font-weight: 600;
}

.nav-link:hover {
  color: var(--text);
}

.nav-button,
.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 14px;
  background: linear-gradient(180deg, var(--primary) 0%, var(--primary-strong) 100%);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.22);
}

.nav-button:hover,
.primary-button:hover,
.upload-trigger:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.26);
}

.nav-button:active,
.primary-button:active,
.secondary-button:active,
.upload-trigger:active {
  transform: translateY(0);
}

.nav-button {
  height: 44px;
  padding: 0 18px;
}

.primary-button {
  min-height: 50px;
  padding: 0 20px;
}

.primary-button.compact,
.secondary-button.compact,
.upload-trigger.mobile-upload {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 12px;
  font-size: 0.95rem;
}

.secondary-button,
.upload-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 14px;
  background: #fff;
  color: var(--text);
  font-weight: 700;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.secondary-button:hover,
.upload-trigger.mobile-upload:hover {
  background: var(--surface-soft);
  border-color: var(--border-strong);
}

.hero {
  padding: 72px 0 76px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 34px;
  align-items: center;
}

.eyebrow,
.section-tag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-strong);
  font-size: 0.88rem;
  font-weight: 700;
}

.hero-copy h1 {
  margin: 18px 0 16px;
  font-size: clamp(2.7rem, 5vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.hero-subtitle,
.section-heading p,
.feature-card p,
.site-footer p,
.dashboard-subtitle,
.panel-header p,
.empty-state p,
.team-card p {
  color: var(--text-soft);
  line-height: 1.68;
}

.hero-subtitle {
  max-width: 620px;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.hero-metrics {
  display: flex;
  gap: 16px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.metric-card {
  min-width: 148px;
  padding: 18px 18px 16px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(219, 229, 240, 0.9);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
}

.metric-card strong,
.stat-card strong {
  display: block;
  font-size: 1.3rem;
  letter-spacing: -0.03em;
}

.metric-card span,
.stat-card span {
  display: block;
  margin-top: 6px;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.app-preview {
  width: 100%;
  max-width: 560px;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(219, 229, 240, 0.92);
  box-shadow: var(--shadow-md);
}

.preview-topbar {
  display: flex;
  gap: 8px;
  padding: 18px 20px;
  background: rgba(248, 250, 252, 0.96);
  border-bottom: 1px solid rgba(219, 229, 240, 0.9);
}

.preview-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d8e0eb;
}

.preview-body {
  display: grid;
  grid-template-columns: 92px 1fr;
  min-height: 440px;
}

.preview-sidebar {
  padding: 18px 14px;
  background: #f8fbff;
  border-right: 1px solid rgba(219, 229, 240, 0.9);
}

.preview-logo,
.preview-nav-item,
.preview-search,
.preview-avatar,
.preview-badge,
.preview-line,
.preview-icon,
.preview-row {
  background: linear-gradient(180deg, #eef4fb 0%, #e6edf7 100%);
}

.preview-logo {
  height: 40px;
  border-radius: 14px;
  margin-bottom: 22px;
}

.preview-nav-item {
  height: 40px;
  border-radius: 12px;
  margin-bottom: 12px;
}

.preview-nav-item.active {
  background: linear-gradient(180deg, #dbeafe 0%, #c7dcff 100%);
}

.preview-content {
  padding: 18px;
  background: #fff;
}

.preview-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.preview-search {
  height: 44px;
  border-radius: 14px;
  flex: 1;
}

.preview-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.preview-banner {
  margin-top: 16px;
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(135deg, #eff6ff 0%, #f8fbff 100%);
  border: 1px solid #dbeafe;
}

.preview-badge {
  width: 86px;
  height: 24px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.preview-line {
  height: 12px;
  border-radius: 999px;
  margin-top: 10px;
  opacity: 0.9;
}

.preview-line.wide {
  width: 88%;
}

.preview-line.small {
  width: 54%;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.preview-card {
  padding: 14px;
  border-radius: 18px;
  border: 1px solid #e5edf6;
  background: #fbfdff;
}

.preview-icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  margin-bottom: 12px;
}

.preview-table {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.preview-row {
  height: 42px;
  border-radius: 14px;
}

.features-section {
  padding: 56px 0 38px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 30px;
}

.section-heading h2 {
  margin: 14px 0 12px;
  font-size: clamp(2rem, 3vw, 3rem);
  letter-spacing: -0.04em;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.feature-card {
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(219, 229, 240, 0.9);
  box-shadow: var(--shadow-sm);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.feature-card:hover,
.panel:hover,
.stat-card:hover,
.team-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-strong);
}

.feature-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(180deg, #eff6ff 0%, #dbeafe 100%);
  margin-bottom: 18px;
}

.feature-icon svg,
.nav-icon svg,
.upload-zone-icon svg,
.empty-state-icon svg,
.topbar-search svg,
.file-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--primary);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.feature-card h3,
.team-card h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}

.team-section {
  padding: 26px 0 74px;
}

.team-heading {
  margin-bottom: 22px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.team-card {
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(219, 229, 240, 0.9);
  box-shadow: var(--shadow-sm);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.team-avatar {
  width: 68px;
  height: 68px;
  margin-bottom: 16px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(37, 99, 235, 0.1);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card p {
  margin: 0;
  font-size: 0.95rem;
}

.site-footer {
  margin-top: auto;
  padding: 24px 0 34px;
  border-top: 1px solid rgba(219, 229, 240, 0.8);
  background: rgba(248, 250, 252, 0.56);
}

.footer-inner-extended {
  align-items: center;
}

.footer-copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-brand {
  display: inline-block;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.footer-copy p {
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 20px;
  color: var(--text-soft);
  font-weight: 600;
  flex-wrap: wrap;
}

.footer-links a:hover,
.dashboard-footer-links a:hover {
  color: var(--text);
}

.legal-anchor {
  position: relative;
  top: -90px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.dashboard-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: var(--sidebar-width) 1fr;
}

.sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 22px 16px;
  border-right: 1px solid rgba(219, 229, 240, 0.92);
  background: rgba(251, 253, 255, 0.92);
  backdrop-filter: blur(14px);
}

.sidebar-header {
  padding: 6px 6px 18px;
}

.sidebar-nav {
  display: grid;
  gap: 8px;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border-radius: 14px;
  color: var(--text-soft);
  font-weight: 600;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease, opacity 180ms ease;
}

.sidebar-link:hover {
  background: rgba(37, 99, 235, 0.06);
  color: var(--text);
}

.sidebar-link.active {
  background: linear-gradient(180deg, #eff6ff 0%, #dbeafe 100%);
  color: var(--primary-strong);
}

.nav-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.sidebar-storage {
  margin-top: 24px;
  padding: 18px;
  border-radius: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.storage-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.storage-header span {
  color: var(--text-soft);
  font-size: 0.92rem;
}

.storage-header strong {
  font-size: 0.98rem;
  letter-spacing: -0.02em;
}

.storage-bar {
  height: 10px;
  border-radius: 999px;
  background: #edf2f8;
  margin-top: 14px;
  overflow: hidden;
}

.storage-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #3b82f6 0%, #2563eb 100%);
  transition: width 260ms ease;
}

.main-panel {
  min-width: 0;
  transition: opacity 180ms ease, transform 180ms ease;
}

.main-panel.is-loading {
  opacity: 0.92;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 15;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 80px;
  padding: 18px 28px;
  background: rgba(244, 247, 251, 0.84);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(219, 229, 240, 0.9);
}

.topbar-search {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  max-width: 540px;
  flex: 1;
  padding: 0 16px;
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.topbar-search svg {
  width: 18px;
  height: 18px;
  stroke: var(--text-faint);
}

.topbar-search input {
  width: 100%;
  font-size: 0.98rem;
}

.topbar-user {
  display: flex;
  align-items: center;
  gap: 14px;
}

.user-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.2;
}

.user-role {
  color: var(--text-faint);
  font-size: 0.82rem;
}

.user-avatar {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(180deg, #dbeafe 0%, #bfdbfe 100%);
  color: var(--primary-strong);
  font-weight: 800;
  letter-spacing: -0.02em;
  border: 1px solid rgba(37, 99, 235, 0.16);
}

.dashboard-content {
  padding: 28px;
}

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

.dashboard-hero h1 {
  margin: 12px 0 10px;
  font-size: clamp(2rem, 3vw, 2.8rem);
  letter-spacing: -0.04em;
}

.hero-actions-inline {
  display: flex;
  gap: 12px;
}

.stats-grid,
.content-grid {
  display: grid;
  gap: 18px;
}

.stats-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 18px;
}

.content-grid {
  grid-template-columns: 360px minmax(0, 1fr);
}

.panel,
.stat-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(219, 229, 240, 0.92);
  box-shadow: var(--shadow-sm);
  border-radius: 22px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, opacity 180ms ease;
}

.stat-card {
  padding: 22px;
}

.stat-label,
.stat-note {
  color: var(--text-soft);
}

.stat-label {
  font-size: 0.94rem;
}

.stat-note {
  margin-top: 8px;
  font-size: 0.9rem;
}

.panel {
  padding: 22px;
}

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

.panel-header h2 {
  margin: 0 0 6px;
  font-size: 1.18rem;
  letter-spacing: -0.03em;
}

.upload-zone {
  display: grid;
  justify-items: center;
  text-align: center;
  padding: 28px 20px;
  border: 1.5px dashed #c9d8ea;
  border-radius: 20px;
  background: linear-gradient(180deg, #fafcff 0%, #f6faff 100%);
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.upload-zone:hover,
.upload-zone:focus-visible,
.upload-zone.dragover {
  border-color: #7aa6f7;
  background: #f5f9ff;
  box-shadow: inset 0 0 0 1px rgba(122, 166, 247, 0.18);
}

.upload-zone.dragover {
  transform: scale(1.01);
}

.upload-zone-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(180deg, #eff6ff 0%, #dbeafe 100%);
  margin-bottom: 16px;
}

.upload-zone h3 {
  margin: 0;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}

.upload-zone p {
  margin: 8px 0 14px;
  color: var(--text-soft);
}

.upload-queue {
  margin-top: 16px;
  display: grid;
  gap: 12px;
}

.upload-item {
  padding: 14px;
  border-radius: 16px;
  background: var(--surface-soft);
  border: 1px solid var(--border);
  animation: fadeInUp 220ms ease;
}

.upload-item-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.upload-item-name {
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.upload-status {
  color: var(--text-faint);
  font-size: 0.9rem;
  white-space: nowrap;
}

.progress-track {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: #e7eef7;
  overflow: hidden;
}

.progress-bar {
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #60a5fa 0%, #2563eb 100%);
  transition: width 180ms linear;
}

.table-shell {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: #fcfdff;
}

.file-table {
  width: 100%;
  border-collapse: collapse;
}

.file-table th,
.file-table td {
  text-align: left;
  padding: 15px 16px;
}

.file-table thead th {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: #f8fbff;
  border-bottom: 1px solid var(--border);
}

.file-table tbody tr {
  transition: background-color 160ms ease, opacity 180ms ease;
}

.file-table tbody tr:not(:last-child) td {
  border-bottom: 1px solid #edf2f7;
}

.file-table tbody tr:hover {
  background: #f8fbff;
}

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

.file-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(180deg, #eff6ff 0%, #dbeafe 100%);
  flex: 0 0 auto;
}

.file-name-group {
  min-width: 0;
}

.file-name {
  display: block;
  font-weight: 600;
  letter-spacing: -0.01em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.file-meta {
  display: block;
  margin-top: 3px;
  color: var(--text-faint);
  font-size: 0.85rem;
}

.empty-state {
  display: grid;
  justify-items: center;
  text-align: center;
  padding: 48px 20px;
}

.empty-state-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(180deg, #eff6ff 0%, #dbeafe 100%);
  margin-bottom: 14px;
}

.empty-state h3 {
  margin: 0 0 8px;
  font-size: 1.06rem;
  letter-spacing: -0.02em;
}

.dashboard-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px 6px 6px;
  color: var(--text-soft);
  font-size: 0.94rem;
  flex-wrap: wrap;
}

.dashboard-footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-weight: 600;
}

.fade-row {
  animation: fadeInUp 220ms ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1120px) {
  .hero-grid,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .stats-grid,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .app-preview {
    max-width: 720px;
  }
}

@media (max-width: 860px) {
  .dashboard-shell {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: relative;
    height: auto;
    padding-bottom: 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(219, 229, 240, 0.92);
  }

  .sidebar-nav {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .sidebar-link {
    justify-content: center;
    padding: 12px;
  }

  .sidebar-link span:last-child {
    display: none;
  }

  .sidebar-storage {
    display: none;
  }

  .topbar,
  .dashboard-content {
    padding-left: 20px;
    padding-right: 20px;
  }

  .dashboard-hero {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .header-inner,
  .footer-inner,
  .topbar,
  .topbar-user {
    flex-wrap: wrap;
  }

  .hero {
    padding-top: 50px;
  }

  .feature-grid,
  .stats-grid,
  .sidebar-nav,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .preview-body {
    grid-template-columns: 70px 1fr;
  }

  .preview-grid {
    grid-template-columns: 1fr;
  }

  .topbar-user {
    width: 100%;
    justify-content: space-between;
  }

  .user-meta {
    align-items: flex-start;
  }

  .file-table thead {
    display: none;
  }

  .file-table,
  .file-table tbody,
  .file-table tr,
  .file-table td {
    display: block;
    width: 100%;
  }

  .file-table tr {
    padding: 8px 0;
  }

  .file-table td {
    padding: 10px 14px;
    border-bottom: 0 !important;
  }

  .file-table tbody tr:not(:last-child) {
    border-bottom: 1px solid #edf2f7;
  }

  .file-table td:nth-child(2)::before,
  .file-table td:nth-child(3)::before {
    display: inline-block;
    min-width: 48px;
    margin-right: 8px;
    color: var(--text-faint);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-size: 0.75rem;
  }

  .file-table td:nth-child(2)::before {
    content: "Size";
  }

  .file-table td:nth-child(3)::before {
    content: "Date";
  }
}
