/* ============================================================
   dkintern – Modern Admin CSS
   ============================================================ */

:root {
  --sidebar-width: 260px;
  --sidebar-bg: #0f172a;
  --sidebar-bg2: #1e293b;
  --sidebar-text: #94a3b8;
  --sidebar-text-active: #f8fafc;
  --sidebar-accent: #6366f1;
  --sidebar-accent-dim: rgba(99, 102, 241, 0.12);
  --topbar-height: 60px;
  --topbar-bg: #fff;
  --content-bg: #f1f5f9;
  --card-bg: #fff;
  --card-radius: 12px;
  --border: #e2e8f0;
  --text-primary: #0f172a;
  --text-muted: #64748b;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  --info: #3b82f6;
}

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

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif !important;
  background: var(--content-bg) !important;
  color: var(--text-primary);
  font-size: 0.875rem;
}

/* Ensure Bootstrap containers inside content area don't add unwanted padding */
.admin-content .container,
.admin-content .container-fluid {
  padding-left: 0;
  padding-right: 0;
}

/* Bootstrap table override to match design */
.admin-content .table { font-size: 0.8125rem; }
.admin-content .card { border-radius: var(--card-radius); border-color: var(--border); box-shadow: 0 1px 3px rgba(0,0,0,.04); }

/* ── Layout ──────────────────────────────────────────────── */

.admin-wrapper {
  display: flex;
  min-height: 100vh;
}

/* ── Sidebar ─────────────────────────────────────────────── */

.admin-sidebar {
  width: var(--sidebar-width);
  background: var(--sidebar-bg);
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  z-index: 1050;
  transition: transform 0.28s cubic-bezier(0.4,0,0.2,1);
  scrollbar-width: thin;
  scrollbar-color: #334155 transparent;
}

.admin-sidebar::-webkit-scrollbar { width: 4px; }
.admin-sidebar::-webkit-scrollbar-thumb { background: #334155; border-radius: 4px; }

/* Brand */
.sidebar-brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 1.125rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  text-decoration: none;
  flex-shrink: 0;
}

.sidebar-brand-icon {
  width: 32px;
  height: 32px;
  background: var(--sidebar-accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  color: #fff;
  flex-shrink: 0;
}

.sidebar-brand-text {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.sidebar-brand-sub {
  font-size: 0.65rem;
  color: var(--sidebar-text);
  letter-spacing: 0.05em;
  margin-top: 2px;
}

/* Nav */
.sidebar-nav {
  flex: 1;
  padding: 0.75rem 0;
}

.sidebar-section-label {
  padding: 1rem 1.5rem 0.375rem;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #475569;
}

.sidebar-nav-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1.5rem;
  color: var(--sidebar-text);
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 500;
  border-left: 3px solid transparent;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  white-space: nowrap;
}

.sidebar-nav-item .nav-icon {
  width: 16px;
  text-align: center;
  font-size: 0.8rem;
  flex-shrink: 0;
  opacity: 0.7;
  transition: opacity 0.15s;
}

.sidebar-nav-item:hover {
  background: rgba(255,255,255,0.04);
  color: #cbd5e1;
}

.sidebar-nav-item.active {
  background: var(--sidebar-accent-dim);
  color: var(--sidebar-text-active);
  border-left-color: var(--sidebar-accent);
}

.sidebar-nav-item.active .nav-icon {
  opacity: 1;
  color: var(--sidebar-accent);
}

.sidebar-nav-badge {
  margin-left: auto;
  background: var(--sidebar-accent);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.1rem 0.45rem;
  border-radius: 999px;
  line-height: 1.4;
}

/* Footer user area */
.sidebar-footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1rem 1.25rem;
  flex-shrink: 0;
}

.sidebar-user {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.sidebar-avatar {
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}

.sidebar-user-name {
  color: #e2e8f0;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.2;
}

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

.sidebar-logout {
  margin-left: auto;
  color: #475569;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.15s;
  flex-shrink: 0;
}

.sidebar-logout:hover { color: var(--danger); }

/* ── Main ────────────────────────────────────────────────── */

.admin-main {
  margin-left: var(--sidebar-width);
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

/* ── Topbar ──────────────────────────────────────────────── */

.admin-topbar {
  height: var(--topbar-height);
  background: var(--topbar-bg);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 1.75rem;
  gap: 1rem;
  position: sticky;
  top: 0;
  z-index: 100;
  flex-shrink: 0;
}

.topbar-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.375rem;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 1.125rem;
  border-radius: 6px;
  line-height: 1;
}

.topbar-toggle:hover { background: var(--content-bg); color: var(--text-primary); }

.topbar-breadcrumb {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--text-muted);
  font-size: 0.8125rem;
}

.topbar-breadcrumb .bc-sep { opacity: 0.4; }
.topbar-breadcrumb .bc-current { color: var(--text-primary); font-weight: 600; }

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.topbar-badge-btn {
  position: relative;
  background: none;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  cursor: pointer;
  transition: background 0.15s;
  font-size: 0.9rem;
}

.topbar-badge-btn:hover { background: var(--content-bg); color: var(--text-primary); }

/* ── Content ─────────────────────────────────────────────── */

.admin-content {
  flex: 1;
  padding: 2rem 1.75rem;
}

/* ── Page header ─────────────────────────────────────────── */

.page-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}

.page-title {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.2;
}

.page-subtitle {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin: 0.2rem 0 0;
}

.page-header-actions {
  margin-left: auto;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

/* ── Stat cards ──────────────────────────────────────────── */

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}

.stat-card {
  background: var(--card-bg);
  border-radius: var(--card-radius);
  padding: 1.375rem 1.5rem;
  border: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.04);
  transition: box-shadow 0.2s;
}

.stat-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  flex-shrink: 0;
}

.stat-icon-indigo  { background: #eef2ff; color: #6366f1; }
.stat-icon-emerald { background: #d1fae5; color: #059669; }
.stat-icon-amber   { background: #fef3c7; color: #d97706; }
.stat-icon-rose    { background: #fee2e2; color: #e11d48; }
.stat-icon-blue    { background: #dbeafe; color: #2563eb; }
.stat-icon-violet  { background: #ede9fe; color: #7c3aed; }

.stat-body { min-width: 0; }

.stat-value {
  font-size: 1.625rem;
  font-weight: 800;
  line-height: 1;
  color: var(--text-primary);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
  font-weight: 500;
}

.stat-trend {
  font-size: 0.7rem;
  margin-top: 0.375rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.trend-up   { color: #059669; }
.trend-down { color: #e11d48; }

/* ── Panels / Cards ──────────────────────────────────────── */

.admin-card {
  background: var(--card-bg);
  border-radius: var(--card-radius);
  border: 1px solid var(--border);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.admin-card-header {
  display: flex;
  align-items: center;
  padding: 1rem 1.375rem;
  border-bottom: 1px solid var(--border);
  gap: 0.75rem;
}

.admin-card-title {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--text-primary);
  margin: 0;
}

.admin-card-subtitle {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 1px;
}

.admin-card-action {
  margin-left: auto;
}

.admin-card-body {
  padding: 1.375rem;
}

/* ── Data table ──────────────────────────────────────────── */

.data-table-wrap {
  overflow-x: auto;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8125rem;
}

.data-table thead th {
  padding: 0.625rem 1rem;
  text-align: left;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  background: #f8fafc;
  white-space: nowrap;
}

.data-table tbody td {
  padding: 0.8rem 1rem;
  border-bottom: 1px solid #f1f5f9;
  vertical-align: middle;
}

.data-table tbody tr:last-child td { border-bottom: none; }

.data-table tbody tr:hover td { background: #f8fafc; }

/* ── Badges ──────────────────────────────────────────────── */

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  white-space: nowrap;
}

.badge-success { background: #d1fae5; color: #065f46; }
.badge-warning { background: #fef3c7; color: #92400e; }
.badge-danger  { background: #fee2e2; color: #991b1b; }
.badge-info    { background: #dbeafe; color: #1e40af; }
.badge-neutral { background: #f1f5f9; color: #475569; }
.badge-purple  { background: #ede9fe; color: #5b21b6; }

/* ── Buttons ─────────────────────────────────────────────── */

.btn-primary-solid {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 1rem;
  background: var(--sidebar-accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, box-shadow 0.15s;
  white-space: nowrap;
}

.btn-primary-solid:hover {
  background: #4f46e5;
  color: #fff;
  box-shadow: 0 4px 12px rgba(99,102,241,0.35);
}

.btn-secondary-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 1rem;
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.15s;
  white-space: nowrap;
}

.btn-secondary-outline:hover {
  background: var(--content-bg);
  border-color: #cbd5e1;
  color: var(--text-primary);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.625rem;
  background: transparent;
  color: var(--text-muted);
  border: none;
  border-radius: 6px;
  font-size: 0.8rem;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}

.btn-ghost:hover { background: var(--content-bg); color: var(--text-primary); }
.btn-ghost-danger:hover { background: #fee2e2; color: #e11d48; }

/* ── Form elements ───────────────────────────────────────── */

.form-field {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.375rem;
}

.form-control-modern {
  width: 100%;
  padding: 0.5625rem 0.875rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.8125rem;
  color: var(--text-primary);
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
}

.form-control-modern:focus {
  border-color: var(--sidebar-accent);
  box-shadow: 0 0 0 3px rgba(99,102,241,0.12);
}

.form-control-modern::placeholder { color: #94a3b8; }

/* ── Color swatch ────────────────────────────────────────── */

.color-swatch {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.swatch-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.1);
  flex-shrink: 0;
}

/* ── Tenant card grid ────────────────────────────────────── */

.tenant-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.tenant-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  text-decoration: none;
  color: inherit;
  display: block;
}

.tenant-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  transform: translateY(-2px);
  color: inherit;
}

.tenant-card-stripe {
  height: 5px;
}

.tenant-card-body {
  padding: 1.25rem;
}

.tenant-card-name {
  font-weight: 700;
  font-size: 0.9375rem;
  margin-bottom: 0.25rem;
}

.tenant-card-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-bottom: 1rem;
}

.tenant-card-footer {
  padding: 0.75rem 1.25rem;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 0.5rem;
  background: #fafbfc;
}

/* ── Login page ──────────────────────────────────────────── */

.login-page {
  min-height: 100vh;
  background: var(--sidebar-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.login-card {
  width: 100%;
  max-width: 400px;
  background: var(--sidebar-bg2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}

.login-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.login-logo-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  color: #fff;
  box-shadow: 0 8px 24px rgba(99,102,241,0.4);
}

.login-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  text-align: center;
}

.login-subtitle {
  font-size: 0.8rem;
  color: var(--sidebar-text);
  margin: 0.25rem 0 0;
  text-align: center;
}

.login-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: #94a3b8;
  margin-bottom: 0.4rem;
}

.login-input {
  width: 100%;
  padding: 0.625rem 0.875rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: #f8fafc;
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.login-input:focus {
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99,102,241,0.2);
}

.login-input::placeholder { color: #475569; }

.login-btn {
  width: 100%;
  padding: 0.6875rem;
  background: linear-gradient(135deg, #6366f1, #7c3aed);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.15s, box-shadow 0.15s;
  margin-top: 0.5rem;
  box-shadow: 0 4px 14px rgba(99,102,241,0.4);
}

.login-btn:hover {
  opacity: 0.92;
  box-shadow: 0 6px 20px rgba(99,102,241,0.5);
}

.login-error {
  background: rgba(239,68,68,0.12);
  border: 1px solid rgba(239,68,68,0.25);
  color: #fca5a5;
  border-radius: 8px;
  padding: 0.625rem 0.875rem;
  font-size: 0.8rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ── Activity timeline ───────────────────────────────────── */

.timeline-item {
  display: flex;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #f1f5f9;
}

.timeline-item:last-child { border-bottom: none; }

.timeline-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sidebar-accent);
  margin-top: 5px;
  flex-shrink: 0;
}

.timeline-dot-success { background: var(--success); }
.timeline-dot-warning { background: var(--warning); }
.timeline-dot-danger  { background: var(--danger); }

.timeline-body { min-width: 0; }
.timeline-title { font-size: 0.8125rem; font-weight: 600; }
.timeline-meta  { font-size: 0.72rem; color: var(--text-muted); margin-top: 2px; }

/* ── Quick-action grid ───────────────────────────────────── */

.quick-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.875rem;
}

.quick-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  padding: 1.25rem 1rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  text-decoration: none;
  color: var(--text-primary);
  text-align: center;
  transition: all 0.15s;
  font-weight: 600;
  font-size: 0.8125rem;
}

.quick-action:hover {
  border-color: var(--sidebar-accent);
  box-shadow: 0 4px 16px rgba(99,102,241,0.12);
  color: var(--sidebar-accent);
}

.quick-action-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

/* ── Search bar ──────────────────────────────────────────── */

.search-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0 0.75rem;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.search-bar:focus-within {
  border-color: var(--sidebar-accent);
  box-shadow: 0 0 0 3px rgba(99,102,241,0.1);
}

.search-bar input {
  border: none;
  outline: none;
  background: transparent;
  padding: 0.5rem 0.25rem;
  font-size: 0.8125rem;
  color: var(--text-primary);
  flex: 1;
  min-width: 0;
}

.search-bar input::placeholder { color: #94a3b8; }
.search-bar .search-icon { color: #94a3b8; font-size: 0.8rem; }

/* ── Mobile overlay ──────────────────────────────────────── */

.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1040;
  backdrop-filter: blur(2px);
}

/* ── Responsive ──────────────────────────────────────────── */

@media (max-width: 900px) {
  .admin-sidebar {
    transform: translateX(calc(-1 * var(--sidebar-width)));
  }

  .admin-sidebar.open {
    transform: translateX(0);
  }

  .sidebar-overlay.open {
    display: block;
  }

  .admin-main {
    margin-left: 0;
  }

  .topbar-toggle {
    display: flex;
  }

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

@media (max-width: 480px) {
  .admin-content {
    padding: 1.25rem 1rem;
  }

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

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

/* ── Utility ─────────────────────────────────────────────── */

.text-mono  { font-family: 'SF Mono', 'Fira Code', 'Fira Mono', monospace; }
.text-right { text-align: right; }
.text-truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
/* ── Alert boxes ─────────────────────────────────────────── */
.alert {
  padding: 0.875rem 1.125rem;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 500;
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
}
.alert ul { margin: 0; padding-left: 1.25rem; }
.alert-success { background: #d1fae5; color: #065f46; border: 1px solid #a7f3d0; }
.alert-danger  { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }
.alert-warning { background: #fef3c7; color: #92400e; border: 1px solid #fde68a; }
.alert-info    { background: #dbeafe; color: #1e40af; border: 1px solid #93c5fd; }
.mb-4 { margin-bottom: 1.25rem; }

.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.gap-2  { gap: 0.5rem; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.mt-0  { margin-top: 0; }
.mb-0  { margin-bottom: 0; }

/* delete confirm link */
a[data-confirm]:hover { opacity: 0.85; }

/* Scrollbar general */
* { scrollbar-width: thin; scrollbar-color: #e2e8f0 transparent; }
*::-webkit-scrollbar { width: 6px; height: 6px; }
*::-webkit-scrollbar-thumb { background: #e2e8f0; border-radius: 4px; }
