:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-soft: #eff6ff;
  --market-orange: #0891b2;
  --market-orange-dark: #0f766e;
  --brand-green: #0f766e;
  --sidebar-bg: #0f172a;
  --sidebar-text: #cbd5e1;
  --bg-body: #f6f8fb;
  --bg-card: #ffffff;
  --text-main: #0f172a;
  --text-muted: #64748b;
  --danger: #dc2626;
  --success: #16a34a;
  --warning: #ea580c;
  --border: #e2e8f0;
  --shadow: 0 24px 64px rgba(15, 23, 42, 0.13);
  --radius: 8px;
  --sidebar-w: 280px;
  --header-h: 72px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 12%, rgba(37, 99, 235, 0.10), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f6f8fb 58%, #eef6ff 100%);
  color: var(--text-main);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.5;
}
button, input, textarea, select { font: inherit; }
button { cursor: pointer; border: 0; }
button:disabled {
  cursor: not-allowed;
  opacity: 0.66;
}
a { color: inherit; text-decoration: none; }
.hidden { display: none !important; }

.toast {
  position: fixed;
  z-index: 1000;
  right: 22px;
  bottom: 22px;
  min-width: 280px;
  max-width: 380px;
  padding: 13px 16px;
  border-radius: var(--radius);
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: 0.2s ease;
  font-weight: 800;
}
.toast.show { opacity: 1; transform: translateY(0); }
.toast.error { background: var(--danger); }
.toast.success { background: var(--success); }

.auth-screen {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 34px 18px;
  background:
    radial-gradient(circle at 18% 12%, rgba(37, 99, 235, 0.15), transparent 32%),
    radial-gradient(circle at 84% 18%, rgba(15, 118, 110, 0.14), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f6f8fb 58%, #eef6ff 100%);
}
.auth-card {
  width: min(100%, 430px);
  padding: 34px 30px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.14);
}
.auth-card:has(#signupForm:not(.hidden)) { width: min(100%, 860px); }
.brand-header {
  margin-bottom: 26px;
  text-align: center;
}
.brand-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #101827;
  font-size: 28px;
  font-weight: 900;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--market-orange), #ffbd4a);
  color: #fff;
  font-size: 22px;
  font-weight: 900;
}
.brand-header p {
  margin: 7px 0 0;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}
.mode-switch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-bottom: 24px;
  padding: 5px;
  border-radius: var(--radius);
  background: #eef2f6;
  border: 1px solid #e5eaf0;
}
.mode {
  min-height: 42px;
  border-radius: 7px;
  background: transparent;
  color: var(--text-muted);
  font-weight: 800;
}
.mode.active {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 8px 18px rgba(20, 110, 180, 0.18);
}
.auth-form {
  display: grid;
  gap: 14px;
}
.auth-form h1 {
  margin: 0;
  font-size: 30px;
  letter-spacing: 0;
}
.auth-form > p {
  margin: 0 0 8px;
  color: var(--text-muted);
  font-weight: 650;
}
.stepper {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin: 10px 0 28px;
}
.stepper:before {
  content: "";
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--border);
}
.step-pill {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 2px solid var(--primary);
  border-radius: 10px;
  background: var(--primary);
  color: #fff;
  font-weight: 900;
}
.step-pill.completed {
  border-color: var(--success);
  background: var(--success);
}
.step-pill small {
  position: absolute;
  top: 45px;
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}
.form-step { display: none; }
.form-step.active { display: block; }
.signup-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.signup-actions .primary-btn,
.signup-actions .outline-btn {
  min-width: 140px;
}
.text-link {
  justify-self: start;
  padding: 0;
  background: transparent;
  color: var(--primary);
  font-weight: 900;
}
.form-alert {
  border: 1px solid var(--border);
  border-left: 5px solid var(--primary);
  border-radius: var(--radius);
  padding: 13px 15px;
  background: #f8fbff;
  color: var(--text-main);
}
.form-alert strong {
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
}
.form-alert span {
  display: block;
  color: var(--text-muted);
  font-weight: 750;
}
.form-alert.success {
  border-left-color: var(--success);
  background: #f0fdf4;
}
.form-alert.error {
  border-left-color: var(--danger);
  background: #fef2f2;
}
.otp-panel {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 2px solid #2563eb;
  border-radius: 8px;
  background: #eff6ff;
  box-shadow: 0 16px 36px rgba(37, 99, 235, 0.16);
}
.otp-title {
  color: #1d4ed8;
  font-size: 16px;
}
.otp-panel p {
  margin: 0;
  color: var(--text-muted);
  font-weight: 750;
}
.resend-otp-btn {
  min-height: 42px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  background: #fff;
  color: var(--primary);
  font-weight: 900;
}
.resend-otp-btn:disabled {
  cursor: not-allowed;
  color: #94a3b8;
  background: #f8fafc;
}

label {
  display: grid;
  gap: 8px;
  color: var(--text-main);
  font-size: 13px;
  font-weight: 700;
}
input, textarea, select {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  outline: 0;
  background: #fbfdff;
  color: var(--text-main);
  font-weight: 600;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.10);
}
input, select { min-height: 46px; padding: 0 13px; }
input[type="file"] { padding: 10px 12px; }
textarea {
  min-height: 116px;
  padding: 12px 13px;
  resize: vertical;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.form-grid.compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-height: 58vh;
  overflow: auto;
  padding: 4px;
}
.wide { grid-column: span 2; }

.file-help {
  display: block;
  margin-top: 6px;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 700;
}

.selected-files {
  display: grid;
  gap: 6px;
  margin-top: 8px;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 700;
}

.selected-files span {
  min-width: 0;
  padding: 7px 9px;
  overflow-wrap: anywhere;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #f8fafc;
  color: var(--text-main);
}

.selected-file-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.selected-file-item span {
  padding: 0;
  border: 0;
  background: transparent;
}

.selected-file-item button {
  flex: 0 0 auto;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid #fecaca;
  border-radius: 7px;
  background: #fef2f2;
  color: #b91c1c;
  font-size: 12px;
  font-weight: 900;
}

.selected-file-item button:hover {
  border-color: #ef4444;
  color: #991b1b;
}

.primary-btn, .primary-link, .outline-btn, .mini-btn, .logout {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-weight: 800;
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease, color 0.16s ease;
}
.primary-btn:hover, .primary-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(255, 153, 0, 0.30);
}
.primary-btn, .primary-link {
  padding: 0 18px;
  background: linear-gradient(135deg, var(--market-orange), var(--market-orange-dark));
  color: #fff;
  box-shadow: 0 8px 18px rgba(255, 153, 0, 0.24);
}
.outline-btn, .mini-btn {
  border: 1px solid var(--border);
  padding: 0 12px;
  background: #fff;
  color: var(--text-main);
}
.translate-btn {
  align-self: end;
  width: 100%;
}
.mini-btn {
  min-height: 34px;
  font-size: 12px;
}
.mini-btn:hover, .outline-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.app {
  min-height: 100vh;
  display: flex;
}
.sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  width: var(--sidebar-w);
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 24px;
  background:
    linear-gradient(180deg, #101827 0%, #111827 72%, #0b1220 100%);
  color: #fff;
}
.side-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 900;
  padding: 0 4px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}
.side-brand .brand-mark {
  background: var(--market-orange);
  color: #fff;
}
.nav {
  display: grid;
  gap: 6px;
}
.nav a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 9px;
  color: var(--sidebar-text);
  font-weight: 700;
}
.nav a.active {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 22px rgba(20, 110, 180, 0.22);
}
.nav a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
.logout {
  justify-content: flex-start;
  margin-top: auto;
  padding-left: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  background: transparent;
  color: #fca5a5;
}
.main {
  flex: 1;
  width: calc(100% - var(--sidebar-w));
  margin-left: var(--sidebar-w);
}
.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 32px;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
}
.topbar h1 {
  margin: 0;
  font-size: 24px;
}
.top-kicker {
  display: block;
  margin-bottom: 2px;
  color: var(--primary);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}
.topbar p {
  margin: 2px 0 0;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 700;
}
.top-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.avatar {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff7ed;
  color: var(--market-orange-dark);
  font-weight: 900;
}
.content-body {
  padding: 28px 32px 36px;
}
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}
.section-header h2 {
  margin: 0 0 4px;
  font-size: 25px;
}
.section-header p {
  margin: 0;
  color: var(--text-muted);
  font-weight: 700;
}
.attention-pill {
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff7ed;
  color: #a24e00;
  border: 1px solid #fed7aa;
  font-weight: 800;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 26px;
}
.stat-card {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 124px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.06);
}
.stat-icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  font-weight: 900;
}
.stat-icon.blue { background: var(--primary-soft); color: var(--primary); }
.stat-icon.green { background: #f0fdf4; color: var(--success); }
.stat-icon.yellow { background: #fff7ed; color: var(--market-orange-dark); }
.stat-card h3 {
  margin: 0 0 4px;
  color: var(--text-muted);
  font-size: 14px;
}
.stat-card p {
  margin: 0;
  font-size: 24px;
  font-weight: 900;
}
.data-card {
  margin-bottom: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.055);
  overflow: hidden;
}
.create-panel { border-top: 3px solid var(--market-orange); }
.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);
}
.panel-head h2 {
  margin: 0;
  font-size: 19px;
}
.eyebrow {
  margin: 0 0 4px;
  color: var(--market-orange-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}
.muted, .hint {
  color: var(--text-muted);
  font-weight: 700;
}
.table-wrap {
  width: 100%;
  overflow-x: auto;
}
table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}
th {
  padding: 11px 18px;
  border-bottom: 1px solid var(--border);
  background: #f7f9fb;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 800;
  text-align: left;
  text-transform: uppercase;
}
td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  vertical-align: middle;
}
tr:last-child td { border-bottom: 0; }
tbody tr:hover { background: #fbfbfb; }
td span {
  display: block;
  margin-top: 3px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 700;
}
.row-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #f1f5f9;
  color: #64748b;
  font-size: 12px;
  font-weight: 800;
  text-transform: capitalize;
}
.badge:before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}
.badge.admin_review { background: #fff7ed; color: var(--warning); }
.badge.approved_by_admin, .badge.accepted { background: #f0fdf4; color: var(--success); }
.badge.rejected, .badge.paused { background: #fef2f2; color: var(--danger); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 18px;
}
.product-card {
  display: grid;
  grid-template-rows: 160px 1fr;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}
.product-media {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #0f172a, var(--primary));
  color: #fff;
  font-size: 42px;
  font-weight: 900;
}
.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-card-body {
  display: grid;
  gap: 14px;
  padding: 14px;
}
.product-card h3 {
  margin: 4px 0 6px;
  font-size: 18px;
  line-height: 1.2;
}
.product-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 13px;
}
.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.card-meta span {
  display: inline-flex;
  padding: 5px 8px;
  border-radius: 8px;
  background: #ecfeff;
  color: #155e75;
  font-size: 12px;
  font-weight: 900;
}
.product-actions {
  display: flex;
  justify-content: flex-end;
}
.create-panel .form-grid {
  padding: 18px;
}
.profile-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 18px;
}
.profile-item {
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fbfdff;
}
.profile-item span {
  display: block;
  margin-bottom: 4px;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.profile-item strong {
  overflow-wrap: anywhere;
}
.empty {
  padding: 22px;
  color: var(--text-muted);
  text-align: center;
  font-weight: 800;
}

@media (max-width: 1180px) {
  .stats-grid,
  .product-grid,
  .profile-grid,
  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .auth-card,
  .auth-card:has(#signupForm:not(.hidden)) {
    width: 100%;
    padding: 24px;
  }
  .app { display: block; }
  .sidebar {
    position: static;
    width: auto;
    height: auto;
  }
  .nav {
    display: flex;
    overflow-x: auto;
  }
  .nav a { white-space: nowrap; }
  .main {
    width: 100%;
    margin-left: 0;
  }
  .topbar,
  .panel-head,
  .section-header {
    align-items: stretch;
    flex-direction: column;
  }
  .topbar {
    padding: 16px;
  }
  .top-actions {
    flex-wrap: wrap;
  }
  .content-body {
    padding: 18px 16px 28px;
  }
  .stats-grid,
  .product-grid,
  .profile-grid,
  .form-grid,
  .form-grid.compact {
    grid-template-columns: 1fr;
  }
  .wide { grid-column: auto; }
}

/* Cohesive seller-style wholesaler polish. */
.auth-note {
  padding: 12px 14px;
  border: 1px solid #bfdbfe;
  border-radius: 8px;
  background: #eff6ff;
  color: #1e40af;
  font-size: 13px;
  font-weight: 800;
}

.primary-btn,
.primary-link {
  min-height: 48px;
  border-radius: 8px;
  background: linear-gradient(135deg, #2563eb, #0891b2);
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.22);
}

.primary-btn:hover,
.primary-link:hover {
  box-shadow: 0 16px 30px rgba(37, 99, 235, 0.26);
}

.outline-btn,
.mini-btn {
  min-height: 42px;
  border-color: rgba(15, 118, 110, 0.28);
  border-radius: 8px;
}

.app {
  background: #f6f8fb;
}

.sidebar {
  gap: 18px;
  background: linear-gradient(180deg, #0f172a 0%, #0f2638 56%, #0c3b3a 100%);
}

.side-brand {
  padding-bottom: 6px;
  border-bottom: 0;
}

.side-brand .brand-mark,
.brand-mark {
  background: linear-gradient(135deg, #2563eb, #0f766e);
}

.side-caption {
  margin: -10px 4px 10px;
  color: #94a3b8;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.nav a {
  gap: 10px;
  min-height: 46px;
}

.nav-icon {
  display: grid;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #dbeafe;
  font-size: 11px;
  font-weight: 900;
}

.nav a.active {
  background: #2563eb;
}

.nav a.active .nav-icon {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.logout {
  min-height: 44px;
  border-radius: 8px;
  font-weight: 800;
}

.main {
  background: #f6f8fb;
}

.topbar {
  min-height: 92px;
  margin: 18px 32px 0;
  border: 1px solid rgba(15, 78, 99, 0.1);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.top-status {
  display: inline-flex;
  width: fit-content;
  margin-top: 8px;
  padding: 5px 9px;
  border-radius: 999px;
  background: #ecfdf5;
  color: #047857;
  font-size: 12px;
  font-weight: 900;
}

.content-body {
  padding-top: 22px;
}

.section-header {
  padding: 20px;
  border: 1px solid rgba(15, 78, 99, 0.1);
  border-radius: 8px;
  background:
    radial-gradient(circle at top left, rgba(15, 118, 110, 0.16), transparent 34%),
    linear-gradient(135deg, #f8fafc 0%, #eef6f4 48%, #eff6ff 100%);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.attention-pill {
  background: #ecfdf5;
  color: #047857;
  border-color: #a7f3d0;
}

.auth-card,
.data-card,
.stat-card {
  border: 1px solid rgba(15, 78, 99, 0.12);
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.08);
}

.stat-card,
.product-card {
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.stat-card:hover,
.product-card:hover {
  transform: translateY(-2px);
  border-color: #cbd5e1;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.10);
}

.stat-icon.yellow {
  background: #fefce8;
  color: #ca8a04;
}

.stat-card:first-child { border-top: 3px solid var(--primary); }
.stat-card:nth-child(2) { border-top: 3px solid var(--success); }
.stat-card:nth-child(3) { border-top: 3px solid var(--market-orange); }
.stat-card:nth-child(4) { border-top: 3px solid var(--brand-green); }

.data-card {
  margin-top: 22px;
  margin-bottom: 0;
}

.create-panel {
  border-top: 3px solid #2563eb;
}

.eyebrow {
  color: #0891b2;
}

.panel-head {
  background: #fff;
}

.product-card {
  border-radius: 8px;
}

.product-media {
  background: linear-gradient(135deg, #eff6ff, #ccfbf1);
  color: #1d4ed8;
}

.product-media img {
  object-fit: contain;
  background: #fff;
}

.card-meta span {
  background: #eff6ff;
  color: #1d4ed8;
}

input,
textarea,
select {
  border-radius: 8px;
  background: #fff;
}

input[type="file"] {
  border-style: dashed;
  border-color: #94a3b8;
  background: #f8fafc;
  color: #2563eb;
  font-weight: 900;
}

.file-help,
.selected-files {
  color: #64748b;
  font-weight: 800;
}

.selected-files strong {
  display: block;
  padding: 9px 11px;
  overflow-wrap: anywhere;
  border: 1px solid #bfdbfe;
  border-radius: 8px;
  background: #eff6ff;
  color: #1d4ed8;
}

.selected-files span {
  padding: 7px 9px;
  border-color: #e2e8f0;
  background: #f8fafc;
  color: #0f172a;
}

.selected-file-item span {
  padding: 0;
  border: 0;
  background: transparent;
}

.profile-item {
  border-radius: 8px;
  background: #fff;
}

@media (max-width: 860px) {
  .topbar {
    margin: 0;
    border-radius: 0;
  }

  .side-caption {
    margin-bottom: 0;
  }
}
