/* ============================================================
   WANNART ADMIN — Modern SaaS Dashboard CSS
   No external framework dependencies
   ============================================================ */

/* ── Design tokens ── */
:root {
  --sidebar-bg: #0f172a;
  --sidebar-width: 250px;
  --sidebar-item-active: #6c63ff;
  --sidebar-item-hover: rgba(255,255,255,0.07);
  --sidebar-text: rgba(255,255,255,0.65);
  --sidebar-text-active: #fff;

  --topbar-height: 56px;
  --topbar-bg: #fff;
  --topbar-border: #e5e7eb;

  --bg: #f1f5f9;
  --surface: #fff;
  --border: #e5e7eb;
  --border-light: #f1f5f9;

  --text-primary: #111827;
  --text-secondary: #64748b;
  --text-muted: #94a3b8;

  --accent: #6c63ff;
  --accent-soft: #ede9fe;
  --danger: #ef4444;
  --danger-soft: #fef2f2;
  --success: #10b981;
  --success-soft: #d1fae5;
  --warning: #f59e0b;
  --warning-soft: #fef3c7;

  --radius: 10px;
  --radius-sm: 6px;
  --radius-lg: 14px;
  --shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);

  --font: 'Inter', 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

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

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--font);
  font-size: 14px;
  color: var(--text-primary);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--accent); }
img { max-width: 100%; }
button { font-family: var(--font); }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: #94a3b8; }

/* ============================================================
   LAYOUT
   ============================================================ */

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

/* ── Sidebar ── */
.admin-sidebar {
  width: var(--sidebar-width);
  min-height: 100vh;
  background: #151515;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
}

.sidebar-logo {
  padding: 20px 20px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  flex-shrink: 0;
}

.sidebar-logo a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sidebar-logo img {
  height: 28px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.sidebar-logo-text {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.3px;
}

.sidebar-logo-badge {
  font-size: 9px;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
  margin-top: -1px;
}

/* Nav */
.sidebar-nav {
  flex: 1;
  padding: 12px 10px;
}

.sidebar-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sidebar-section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  padding: 12px 10px 4px;
}

.sidebar-nav > ul > li > a,
.sidebar-nav > ul > li > button {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  color: var(--sidebar-text);
  font-size: 13.5px;
  font-weight: 500;
  transition: background 0.12s, color 0.12s;
  cursor: pointer;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
}

.sidebar-nav > ul > li > a:hover,
.sidebar-nav > ul > li > button:hover {
  background: var(--sidebar-item-hover);
  color: #fff;
}

.sidebar-nav > ul > li.active > a,
.sidebar-nav > ul > li.active > button {
  background: rgba(108, 99, 255, 0.18);
  color: #fff;
}

.sidebar-nav > ul > li.active > a .nav-icon,
.sidebar-nav > ul > li.active > button .nav-icon {
  color: var(--sidebar-item-active);
}

.nav-icon {
  width: 16px;
  height: 16px;
  opacity: 0.7;
  flex-shrink: 0;
}

.sidebar-nav > ul > li > a:hover .nav-icon,
.sidebar-nav > ul > li > button:hover .nav-icon {
  opacity: 1;
}

.nav-chevron {
  margin-left: auto;
  width: 13px;
  height: 13px;
  transition: transform 0.2s;
  opacity: 0.4;
  flex-shrink: 0;
}

.nav-chevron.open {
  transform: rotate(180deg);
}

/* Submenu */
.sidebar-submenu {
  list-style: none;
  margin: 2px 0 4px 26px;
  padding: 0;
  overflow: hidden;
}

.sidebar-submenu li a {
  display: block;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,0.45);
  font-size: 13px;
  font-weight: 400;
  transition: background 0.12s, color 0.12s;
}

.sidebar-submenu li a:hover {
  background: var(--sidebar-item-hover);
  color: #fff;
}

.sidebar-submenu li a.active {
  color: #fff;
  background: rgba(255,255,255,0.05);
}

/* Sidebar footer */
.sidebar-footer {
  padding: 14px 20px;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  gap: 10px;
}

.sidebar-footer-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.15);
}

.sidebar-footer-name {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

.sidebar-footer-role {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
}

/* ── Main body ── */
.admin-body {
  margin-left: var(--sidebar-width);
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ── Topbar ── */
.admin-topbar {
  height: var(--topbar-height);
  background: var(--topbar-bg);
  border-bottom: 1px solid var(--topbar-border);
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.topbar-page-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

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

.topbar-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
}

.topbar-username {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}

.topbar-logout {
  font-size: 12.5px;
  color: var(--text-secondary);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

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

/* ── Hamburger ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.hamburger:hover {
  background: var(--border-light);
}

.hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Sidebar overlay (mobile) ── */
.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 99;
  backdrop-filter: blur(1px);
}

/* ── Main content ── */
.admin-main {
  flex: 1;
  padding: 28px 28px 40px;
}

/* ── Footer ── */
.admin-footer {
  padding: 16px 28px;
  border-top: 1px solid var(--border-light);
  font-size: 12px;
  color: var(--text-muted);
}

/* ============================================================
   COMPONENTS
   ============================================================ */

/* ── Page header ── */
.page-header {
  margin-bottom: 24px;
}

.page-header h1 {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-primary);
  margin: 0 0 4px;
  letter-spacing: -0.3px;
}

.page-header p {
  font-size: 13px;
  color: var(--text-secondary);
  margin: 0;
}

/* ── Card ── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.card-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--surface);
}

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

.card-body {
  padding: 20px;
}

/* Compatibility with old widget/widget-07 classes */
.widget, .widget-07 {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 24px;
}

.widget-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.widget-header h2,
.widget-header h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.widget-body {
  padding: 0;
}

/* ── Tables ── */
.table-responsive {
  overflow-x: auto;
}

.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
}

.table thead th {
  padding: 10px 14px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  background: #f8fafc;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
  text-align: left;
}

.table tbody td {
  padding: 11px 14px;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-light);
  vertical-align: middle;
}

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

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

/* ── DataTables overrides ── */
.dataTables_wrapper {
  padding: 0;
}

.dataTables_wrapper .dataTables_info,
.dataTables_wrapper .dataTables_length,
.dataTables_wrapper .dataTables_paginate {
  padding: 12px 20px;
  font-size: 12.5px;
  color: var(--text-secondary);
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  color: var(--text-secondary) !important;
  border: none !important;
  background: none !important;
  font-size: 13px;
  cursor: pointer;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  background: var(--accent-soft) !important;
  color: var(--accent) !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current {
  background: var(--accent) !important;
  color: #fff !important;
  font-weight: 700;
}

/* ── Pagination (Laravel) ── */
.pagination {
  display: flex;
  list-style: none;
  padding: 12px 20px;
  margin: 0;
  gap: 4px;
  flex-wrap: wrap;
}

.pagination li a,
.pagination li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  padding: 0 8px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  background: var(--surface);
  transition: background 0.12s, color 0.12s, border-color 0.12s;
}

.pagination li a:hover {
  background: var(--accent-soft);
  color: var(--accent);
  border-color: var(--accent);
}

.pagination li.active span,
.pagination li span.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  font-weight: 700;
}

.pagination li.disabled span {
  opacity: 0.4;
  cursor: default;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: opacity 0.12s, background 0.12s;
  font-family: var(--font);
  line-height: 1;
}

.btn:hover { opacity: 0.88; }

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.btn-danger {
  background: var(--danger);
  color: #fff;
  border-color: var(--danger);
}

.btn-success {
  background: var(--success);
  color: #fff;
  border-color: var(--success);
}

.btn-default, .btn-secondary {
  background: #f1f5f9;
  color: var(--text-primary);
  border-color: var(--border);
}

.btn-warning {
  background: var(--warning);
  color: #fff;
  border-color: var(--warning);
}

/* Old gradient buttons compatibility */
.btn-gradient-01 {
  background: var(--danger);
  color: #fff;
  border-color: var(--danger);
}

.btn-gradient-02 {
  background: var(--warning);
  color: #fff;
  border-color: var(--warning);
}

/* ── Badges ── */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}

.badge-success, .badge-green { background: var(--success-soft); color: #065f46; }
.badge-danger, .badge-red   { background: var(--danger-soft); color: #991b1b; }
.badge-warning              { background: var(--warning-soft); color: #92400e; }
.badge-primary              { background: var(--accent-soft); color: #4c1d95; }
.badge-muted                { background: #f1f5f9; color: var(--text-secondary); }

/* ── Forms ── */
.form-control {
  width: 100%;
  padding: 8px 12px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  font-family: var(--font);
  color: var(--text-primary);
  background: var(--surface);
  transition: border-color 0.15s;
  outline: none;
}

.form-control:focus {
  border-color: var(--accent);
}

.input-group {
  display: flex;
  gap: 0;
}

.input-group .form-control {
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  border-right: none;
}

.input-group-btn .btn {
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  border: 1.5px solid var(--border);
  border-left: none;
  background: #f8fafc;
  color: var(--text-secondary);
  padding: 7px 12px;
}

.input-group-btn .btn:hover {
  background: var(--accent-soft);
  color: var(--accent);
}

/* ── Action icons (existing functionality preserved) ── */
.trash-icon,
.warn-icon,
.verified-icon,
.unverified-icon,
.eye-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 15px;
  transition: background 0.12s, color 0.12s;
  vertical-align: middle;
}

.trash-icon { color: var(--danger); }
.trash-icon:hover { background: var(--danger-soft); }

.warn-icon { color: var(--warning); }
.warn-icon:hover { background: var(--warning-soft); }

.verified-icon, .eye-icon { color: var(--accent); }
.verified-icon:hover, .eye-icon:hover { background: var(--accent-soft); }

.unverified-icon { color: var(--success); }
.unverified-icon:hover { background: var(--success-soft); }

/* Inline warning/ban areas */
.warning-area-box,
.warning-area-box-yellow {
  display: none;
  position: absolute;
  z-index: 100;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 12px;
  width: 280px;
  box-shadow: var(--shadow-md);
  margin-top: 4px;
}

.warning-area-box textarea,
.warning-area-box-yellow textarea {
  width: 100%;
  margin-bottom: 8px;
  resize: vertical;
}

.td-actions {
  position: relative;
  white-space: nowrap;
}

/* ── Stat cards (for statistics page) ── */
.stat-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 14px;
  margin-bottom: 28px;
}

.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent, #6c63ff);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.stat-card.purple  { --accent: #6c63ff; }
.stat-card.green   { --accent: #10b981; }
.stat-card.blue    { --accent: #3b82f6; }
.stat-card.orange  { --accent: #f59e0b; }
.stat-card.red     { --accent: #ef4444; }
.stat-card.pink    { --accent: #FE2D55; }

.stat-card-label {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.stat-card-value {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-card-sub {
  font-size: 11px;
  color: var(--text-secondary);
}

/* ── Alert / noty overrides ── */
.noty_theme__mint.noty_type__success { background: var(--success-soft); color: #065f46; border: 1px solid #a7f3d0; }
.noty_theme__mint.noty_type__error   { background: var(--danger-soft);  color: #991b1b; border: 1px solid #fecaca; }
.noty_theme__mint.noty_type__warning { background: var(--warning-soft); color: #92400e; border: 1px solid #fde68a; }

/* ── Login page ── */
.admin-login {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
}

.login-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow-md);
}

.login-card h1 {
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 4px;
}

.login-card p {
  color: var(--text-secondary);
  font-size: 13.5px;
  margin: 0 0 28px;
}

.login-card .form-group {
  margin-bottom: 16px;
}

.login-card label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.login-card .btn {
  width: 100%;
  justify-content: center;
  padding: 10px;
  font-size: 14px;
  margin-top: 8px;
}

/* ── Misc ── */
.text-primary { color: var(--accent) !important; }
.text-muted   { color: var(--text-muted) !important; }
.text-success { color: var(--success) !important; }
.text-danger  { color: var(--danger) !important; }
.text-warning { color: var(--warning) !important; }
.text-gradient-02 { color: var(--text-muted); }

.container-fluid {
  padding: 0;
}

.row { margin: 0; }
.col-xl-12, .col-lg-12 { padding: 0; }

/* ── Results table (statistics) ── */
.results-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.results-table thead th {
  background: #f8fafc;
  padding: 10px 16px;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  text-align: left;
}

.results-table tbody td {
  padding: 11px 16px;
  font-size: 13.5px;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-light);
}

.results-table tbody tr:last-child td { border-bottom: none; }
.results-table tbody tr:hover td { background: #f8fafc; }
.results-total td { font-weight: 700; }

/* Bar chart */
.bar-wrap { min-width: 100px; }
.bar-track { height: 5px; background: #f1f5f9; border-radius: 999px; overflow: hidden; }
.bar-fill  { height: 100%; background: linear-gradient(90deg, var(--accent), #FE2D55); border-radius: 999px; }

/* Stats filter card */
.content-stats-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-bottom: 20px;
}

.form-row-inline {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: flex-end;
}

.form-group-inline {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.form-group-inline label {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.form-control-modern {
  padding: 8px 12px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--text-primary);
  background: var(--surface);
  min-width: 150px;
  outline: none;
  font-family: var(--font);
  transition: border-color 0.15s;
}

.form-control-modern:focus { border-color: var(--accent); }

.btn-filter {
  padding: 8px 20px;
  background: var(--text-primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font);
  transition: background 0.15s;
}

.btn-filter:hover { background: #1e293b; }

.stats-section-title {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-muted);
  margin: 0 0 14px;
}

.stats-divider {
  border: none;
  border-top: 1px solid var(--border-light);
  margin: 8px 0 24px;
}

.cache-notice {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 4px;
}

.no-results {
  text-align: center;
  padding: 40px;
  color: var(--text-secondary);
  font-size: 14px;
}

/* ── Grounding: shadows so elements feel placed, not floating ── */
.stat-card {
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

.card,
.widget,
.widget-07 {
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

/* Bootstrap .has-shadow compatibility */
.has-shadow {
  box-shadow: 0 2px 8px rgba(0,0,0,0.07) !important;
}

/* Normalize Bootstrap grid padding inside admin-main */
.admin-main .container-fluid {
  padding: 0;
}

.admin-main .row {
  margin-left: -10px;
  margin-right: -10px;
}

.admin-main [class*="col-"] {
  padding-left: 10px;
  padding-right: 10px;
}

/* Widget inner padding */
.widget-body,
.widget-07 .widget-body {
  padding: 0;
}

/* .bordered widget-header */
.widget-header.bordered {
  border-bottom: 1px solid var(--border-light);
  padding: 14px 20px;
}

.widget-header.bordered h2,
.widget-header.bordered h3 {
  font-size: 15px;
  font-weight: 700;
  margin: 0;
  color: var(--text-primary);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .topbar-username {
    display: none;
  }

  .admin-sidebar {
    transform: translateX(-100%);
    transition: transform 0.22s ease;
    z-index: 100;
  }

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

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

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

  .admin-main {
    padding: 16px;
  }

  .admin-topbar {
    padding: 0 16px;
  }
}
