/* ====================================================================
   FYNSOL AGENCY - ADMIN DASHBOARD & CMS STYLESHEET
   Matching the Dark Obsidian Engine Design Exactly
   ==================================================================== */

:root {
  --bg-main: #080c11;
  --bg-sidebar: #0b1119;
  --bg-card: #0e1622;
  --bg-card-hover: #121c2c;
  --bg-input: #0a0f17;
  --border-color: #1a2536;
  --border-focus: #2563eb;
  
  --primary: #2563eb;
  --primary-hover: #1d4ed8;
  --primary-glow: rgba(37, 99, 235, 0.35);
  
  --accent-orange: #ff5a36;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  --info: #06b6d4;

  --text-main: #f3f4f6;
  --text-muted: #94a3b8;
  --text-subtle: #64748b;
  
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-full: 9999px;
  
  --transition: all 0.2s ease-in-out;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  overflow-x: hidden;
  zoom: 0.9;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* ====================================================================
   LAYOUT STRUCTURE: SIDEBAR & MAIN WRAPPER
   ==================================================================== */

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

/* Sidebar */
.admin-sidebar {
  width: 260px;
  background-color: var(--bg-sidebar);
  border-right: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
  transition: var(--transition);
}

.admin-sidebar.collapsed {
  width: 76px;
}

.admin-sidebar.collapsed .nav-group-title,
.admin-sidebar.collapsed .nav-text,
.admin-sidebar.collapsed .brand-name {
  display: none;
}

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

/* Sidebar Header */
.sidebar-header {
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  border-bottom: 1px solid var(--border-color);
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
}

.brand-icon {
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, var(--primary), #38bdf8);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  box-shadow: 0 4px 12px var(--primary-glow);
}

.sidebar-collapse-btn {
  background: #131b26;
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 12px;
  transition: var(--transition);
}
.sidebar-collapse-btn:hover {
  color: #fff;
  border-color: var(--primary);
  background: var(--primary);
}

/* Sidebar Nav */
.sidebar-nav {
  flex: 1;
  overflow-y: auto;
  padding: 20px 14px;
}

.nav-group {
  margin-bottom: 24px;
}

.nav-group-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-subtle);
  padding: 0 12px 10px;
}

.nav-list {
  list-style: none;
}

.nav-item {
  margin-bottom: 4px;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: var(--radius-full);
  color: var(--text-muted);
  font-size: 13.5px;
  font-weight: 500;
  transition: var(--transition);
}

.nav-link .nav-icon {
  font-size: 15px;
  width: 18px;
  text-align: center;
}

.nav-link:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.04);
}

.nav-link.active {
  background-color: var(--primary);
  color: #ffffff;
  font-weight: 600;
  box-shadow: 0 4px 14px var(--primary-glow);
}

/* Main Content Area */
.admin-main {
  margin-left: 260px;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
  transition: var(--transition);
}

.admin-main.expanded {
  margin-left: 76px;
}

/* ====================================================================
   TOPBAR NAVIGATION
   ==================================================================== */

.admin-topbar {
  height: 68px;
  background-color: var(--bg-sidebar);
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  position: sticky;
  top: 0;
  z-index: 900;
}

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

.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-main);
  font-size: 18px;
  cursor: pointer;
}

.topbar-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #111824;
  border: 1px solid var(--border-color);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}

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

.pill-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-muted);
  background: transparent;
  border: 1px solid transparent;
  transition: var(--transition);
}

.pill-item:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.pill-item.active {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 2px 8px var(--primary-glow);
}

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

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: 11.5px;
  font-weight: 700;
  color: #10b981;
  letter-spacing: 0.5px;
}

.topbar-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px var(--primary-glow);
  transition: var(--transition);
}

.topbar-action-btn:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
}

.topbar-icon-btn {
  width: 36px;
  height: 36px;
  background: #111824;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.topbar-icon-btn:hover {
  color: #fff;
  border-color: var(--primary);
}

.user-profile-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #111824;
  border: 1px solid var(--border-color);
  padding: 4px 12px 4px 6px;
  border-radius: var(--radius-full);
  cursor: pointer;
  position: relative;
}

.avatar-circle {
  width: 28px;
  height: 28px;
  background: #10b981;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
}

.user-details {
  display: flex;
  flex-direction: column;
}

.user-email {
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  max-width: 140px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.user-role {
  font-size: 10.5px;
  color: var(--text-subtle);
  text-transform: capitalize;
}

/* User dropdown */
.profile-dropdown {
  position: absolute;
  top: 48px;
  right: 0;
  width: 200px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 6px;
  display: none;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  z-index: 1000;
}
.user-profile-badge:hover .profile-dropdown {
  display: block;
}
.dropdown-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 13px;
  color: var(--text-muted);
}
.dropdown-item:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

/* ====================================================================
   DASHBOARD CONTENT & CARDS
   ==================================================================== */

.admin-body {
  padding: 28px;
  flex: 1;
}

.breadcrumb-trail {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: var(--text-subtle);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.breadcrumb-trail a {
  color: var(--text-subtle);
}
.breadcrumb-trail a:hover {
  color: var(--primary);
}
.breadcrumb-trail span.active {
  color: var(--primary);
}

.page-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 24px;
}

.page-header h1 {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
  margin-bottom: 4px;
}

.page-header p {
  color: var(--text-muted);
  font-size: 14px;
}

.header-action-group {
  display: flex;
  gap: 10px;
}

.btn-primary-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-size: 13.5px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px var(--primary-glow);
  transition: var(--transition);
}
.btn-primary-pill:hover {
  background: var(--primary-hover);
  color: #fff;
  transform: translateY(-1px);
}

.btn-dark-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #111824;
  color: #fff;
  border: 1px solid var(--border-color);
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.btn-dark-pill:hover {
  background: #162030;
  border-color: #2b3a52;
  color: #fff;
}

/* Stat Cards Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 24px;
}

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

.stat-card:hover {
  border-color: #2b3b52;
  transform: translateY(-2px);
  background: var(--bg-card-hover);
}

.stat-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.stat-title {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-subtle);
}

.stat-icon {
  font-size: 14px;
  color: var(--primary);
}

.stat-value {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}

.stat-subtext {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Hero Operations Engine Banner */
.operations-banner {
  background: linear-gradient(135deg, #0e1622 0%, #131d2e 100%);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  position: relative;
}

.banner-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.banner-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--primary), #38bdf8);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  box-shadow: 0 4px 16px var(--primary-glow);
}

.banner-content h2 {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 4px;
}

.banner-content p {
  font-size: 13.5px;
  color: var(--text-muted);
}

.banner-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Two Column Content */
.dashboard-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 24px;
}

.card-panel {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.panel-title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.badge-counter {
  background: #f59e0b;
  color: #000;
  font-size: 11px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: var(--radius-full);
}

.panel-link {
  font-size: 12.5px;
  color: var(--primary);
  font-weight: 600;
}
.panel-link:hover {
  text-decoration: underline;
}

/* Styled Table */
.styled-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.styled-table th {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-subtle);
  padding: 12px 10px;
  border-bottom: 1px solid var(--border-color);
}

.styled-table td {
  padding: 14px 10px;
  font-size: 13px;
  border-bottom: 1px solid #141d2c;
  color: var(--text-muted);
}

.styled-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
  color: #fff;
}

.table-post-title {
  font-weight: 600;
  color: #fff;
  max-width: 240px;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.table-author {
  font-size: 11.5px;
  color: var(--text-subtle);
}

/* Status Badges */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.status-published {
  background: rgba(16, 185, 129, 0.12);
  color: #10b981;
}

.status-draft {
  background: rgba(148, 163, 184, 0.12);
  color: #94a3b8;
}

.status-scheduled {
  background: rgba(245, 158, 11, 0.12);
  color: #f59e0b;
}

.status-trash {
  background: rgba(239, 68, 68, 0.12);
  color: #ef4444;
}

.pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.pulse-dot.green { background: #10b981; box-shadow: 0 0 8px #10b981; }
.pulse-dot.gray { background: #94a3b8; }
.pulse-dot.yellow { background: #f59e0b; box-shadow: 0 0 8px #f59e0b; }
.pulse-dot.red { background: #ef4444; }

/* Activity Stream */
.stream-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}

.stream-tab-btn {
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  border: 1px solid var(--border-color);
  background: #111824;
  color: var(--text-muted);
  cursor: pointer;
}
.stream-tab-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.stream-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stream-item {
  background: #111824;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: var(--transition);
}
.stream-item:hover {
  border-color: #26364d;
}

.stream-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(37, 99, 235, 0.15);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}

.stream-content {
  flex: 1;
}

.stream-title {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2px;
}

.stream-sub {
  font-size: 11.5px;
  color: var(--text-subtle);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ====================================================================
   FORM CONTROLS, INPUTS & EDITORS
   ==================================================================== */

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--text-subtle);
  margin-bottom: 8px;
}

.form-control-custom {
  width: 100%;
  background: var(--bg-input);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  color: #fff;
  font-size: 14px;
  outline: none;
  transition: var(--transition);
}

.form-control-custom:focus {
  border-color: var(--border-focus);
  box-shadow: 0 0 0 3px var(--primary-glow);
}

.post-title-input {
  font-size: 24px;
  font-weight: 700;
  padding: 14px 18px;
}

.slug-preview-box {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #0b1119;
  border: 1px solid var(--border-color);
  padding: 8px 14px;
  border-radius: var(--radius-md);
  font-size: 12.5px;
  color: var(--text-muted);
  margin-top: 6px;
}

.slug-preview-box span.domain {
  color: var(--text-subtle);
}

.slug-input {
  background: transparent;
  border: none;
  color: var(--primary);
  font-weight: 600;
  outline: none;
  flex: 1;
}

/* Custom WYSIWYG Editor */
.editor-container {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
}

.editor-toolbar {
  background: #111824;
  border-bottom: 1px solid var(--border-color);
  padding: 8px 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: center;
}

.toolbar-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  width: 32px;
  height: 32px;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: var(--transition);
}

.toolbar-btn:hover {
  background: #1a2538;
  color: #fff;
}

.toolbar-btn.active {
  background: var(--primary);
  color: #fff;
}

.toolbar-divider {
  width: 1px;
  height: 20px;
  background: var(--border-color);
  margin: 0 4px;
}

.editor-content-area {
  min-height: 420px;
  padding: 20px;
  color: #f3f4f6;
  font-size: 15px;
  line-height: 1.8;
  outline: none;
  overflow-y: auto;
}

.editor-content-area p { margin-bottom: 14px; }
.editor-content-area h1, 
.editor-content-area h2, 
.editor-content-area h3 { color: #fff; margin: 20px 0 10px; font-weight: 700; }
.editor-content-area blockquote {
  border-left: 3px solid var(--primary);
  padding: 10px 20px;
  background: rgba(37, 99, 235, 0.05);
  margin: 16px 0;
  font-style: italic;
  color: #cbd5e1;
}
.editor-content-area img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 16px 0;
}
.editor-content-area figure {
  margin: 16px 0;
  text-align: center;
}
.editor-content-area figcaption {
  font-size: 12px;
  color: var(--text-subtle);
  margin-top: 6px;
}
.editor-content-area mark {
  background: rgba(245, 158, 11, 0.3);
  color: #fef08a;
  padding: 2px 4px;
  border-radius: 4px;
}

.editor-statusbar {
  background: #0c121c;
  border-top: 1px solid var(--border-color);
  padding: 8px 16px;
  font-size: 12px;
  color: var(--text-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* SEO Panel & SERP Preview */
.seo-preview-card {
  background: #0a0f17;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 20px;
}

.serp-url {
  font-size: 12px;
  color: #10b981;
  margin-bottom: 4px;
}
.serp-title {
  font-size: 17px;
  color: #38bdf8;
  font-weight: 600;
  margin-bottom: 4px;
  cursor: pointer;
}
.serp-desc {
  font-size: 13px;
  color: #94a3b8;
  line-height: 1.4;
}

/* Health Meter */
.health-meter {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.health-meter-bar {
  flex: 1;
  height: 8px;
  background: #111824;
  border-radius: var(--radius-full);
  overflow: hidden;
}
.health-meter-fill {
  height: 100%;
  border-radius: var(--radius-full);
  transition: width 0.4s ease;
}

/* Alerts */
.admin-alert {
  padding: 14px 18px;
  border-radius: var(--radius-md);
  font-size: 13.5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.alert-success { background: rgba(16, 185, 129, 0.15); border: 1px solid rgba(16, 185, 129, 0.4); color: #34d399; }
.alert-danger { background: rgba(239, 68, 68, 0.15); border: 1px solid rgba(239, 68, 68, 0.4); color: #f87171; }
.alert-warning { background: rgba(245, 158, 11, 0.15); border: 1px solid rgba(245, 158, 11, 0.4); color: #fbbf24; }

/* Modal */
.custom-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.custom-modal.active {
  display: flex;
}
.modal-dialog-custom {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 520px;
  padding: 24px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

/* ====================================================================
   RESPONSIVE QUERIES
   ==================================================================== */

@media (max-width: 1200px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .dashboard-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 992px) {
  .admin-sidebar {
    transform: translateX(-100%);
  }
  .admin-sidebar.mobile-open {
    transform: translateX(0);
  }
  .admin-main {
    margin-left: 0 !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .topbar-pills {
    display: none;
  }
}

@media (max-width: 640px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .operations-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .page-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .topbar-right .status-pill,
  .user-role {
    display: none;
  }
}
