/* ═══════════════════════════════════════════
   FURRY FRIENDS HQ — Blog System Styles
   ═══════════════════════════════════════════ */

/* ─────────────────────────────────────────
   1. LOGIN PAGE
   ───────────────────────────────────────── */
.blog-login-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  padding: 24px;
}
.blog-login-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 48px 40px;
  width: 100%;
  max-width: 420px;
  border: 1px solid var(--border);
  box-shadow: 0 16px 48px var(--shadow-color);
  text-align: center;
}
.blog-login-card .login-logo {
  font-size: 2.5rem;
  color: var(--brown);
  margin-bottom: 8px;
}
.blog-login-card h1 {
  font-size: 1.6rem;
  margin-bottom: 6px;
}
.blog-login-card .login-sub {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 28px;
}
.blog-login-card .form-group {
  text-align: left;
}
.blog-login-card input[type="email"],
.blog-login-card input[type="password"],
.blog-login-card input[type="text"] {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--r);
  border: 1.5px solid var(--border);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 0.92rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.blog-login-card input:focus {
  border-color: var(--gold);
  background: var(--white);
}
.blog-login-card .login-btn {
  width: 100%;
  padding: 14px;
  border-radius: 100px;
  background: var(--brown);
  color: var(--white);
  border: none;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  margin-top: 8px;
}
.blog-login-card .login-btn:hover {
  background: #2a1e14;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(61, 43, 31, 0.35);
}
.blog-login-card .login-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.login-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
  padding: 10px 14px;
  border-radius: var(--r-sm);
  font-size: 0.84rem;
  margin-bottom: 16px;
  display: none;
}
.login-error.show {
  display: block;
}
.login-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 0.82rem;
  color: var(--text-light);
  transition: color 0.2s;
}
.login-back:hover {
  color: var(--gold);
}

/* ─────────────────────────────────────────
   2. DASHBOARD LAYOUT
   ───────────────────────────────────────── */
.dash-layout {
  display: flex;
  min-height: 100vh;
  background: #f8f6f3;
}

/* Sidebar */
.dash-sidebar {
  width: 260px;
  background: var(--brown);
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 100;
  transition: transform 0.3s var(--ease);
}
.dash-sidebar-header {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 10px;
}
.dash-sidebar-header .logo-icon {
  font-size: 1.4rem;
  color: var(--gold);
}
.dash-sidebar-header .logo-text {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}
.dash-sidebar-header .logo-sub {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.dash-nav {
  flex: 1;
  padding: 16px 12px;
  overflow-y: auto;
}
.dash-nav-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  padding: 12px 12px 6px;
}
.dash-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 0.86rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  font-family: var(--sans);
}
.dash-nav-item:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}
.dash-nav-item.active {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-weight: 600;
}
.dash-nav-item i {
  width: 20px;
  text-align: center;
  font-size: 0.9rem;
}
.dash-nav-item .nav-badge {
  margin-left: auto;
  background: var(--gold);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
}
.dash-sidebar-footer {
  padding: 16px 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Main Content */
.dash-main {
  flex: 1;
  margin-left: 260px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Top Bar */
.dash-topbar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 50;
}
.dash-topbar-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.dash-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.2rem;
  color: var(--text);
  cursor: pointer;
  padding: 8px;
}
.dash-page-title {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
}
.dash-topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.dash-user {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  color: var(--text-mid);
}
.dash-user-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gold-pale);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.82rem;
}

/* Content Area */
.dash-content {
  flex: 1;
  padding: 32px;
}

/* ─────────────────────────────────────────
   3. DASHBOARD COMPONENTS
   ───────────────────────────────────────── */

/* Stats Cards */
.dash-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.dash-stat-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 24px;
  border: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.dash-stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--shadow-color);
}
.dash-stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.dash-stat-icon.gold {
  background: var(--gold-pale);
  color: var(--gold);
}
.dash-stat-icon.teal {
  background: var(--teal-pale);
  color: var(--teal);
}
.dash-stat-icon.brown {
  background: var(--cream-mid);
  color: var(--brown-mid);
}
.dash-stat-icon.blue {
  background: #e8f0fe;
  color: #3b5bdb;
}
.dash-stat-info h3 {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  margin-bottom: 4px;
}
.dash-stat-info p {
  font-size: 0.78rem;
  color: var(--text-light);
  margin: 0;
  font-weight: 500;
}

/* Action Bar */
.dash-action-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 16px;
  flex-wrap: wrap;
}
.dash-search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 10px 16px;
  min-width: 280px;
  transition: border-color 0.2s;
}
.dash-search i {
  color: var(--text-light);
  font-size: 0.88rem;
}
.dash-search input {
  border: none;
  background: none;
  outline: none;
  font-family: var(--sans);
  font-size: 0.86rem;
  color: var(--text);
  width: 100%;
}
.dash-filters {
  display: flex;
  gap: 10px;
  align-items: center;
}
.dash-filter-select {
  padding: 10px 36px 10px 14px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-family: var(--sans);
  font-size: 0.82rem;
  color: var(--text);
  appearance: none;
  cursor: pointer;
  outline: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238A6450' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  transition: border-color 0.2s;
}
.dash-filter-select:focus {
  border-color: var(--gold);
}
.dash-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: 100px;
  background: var(--brown);
  color: var(--white);
  border: none;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.84rem;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}
.dash-btn-primary:hover {
  background: #2a1e14;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(61, 43, 31, 0.25);
}
.dash-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 100px;
  background: var(--white);
  color: var(--text);
  border: 1.5px solid var(--border);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.82rem;
  cursor: pointer;
  transition: all 0.2s;
}
.dash-btn-secondary:hover {
  border-color: var(--brown);
  color: var(--brown);
}
.dash-btn-danger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 100px;
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.78rem;
  cursor: pointer;
  transition: all 0.2s;
}
.dash-btn-danger:hover {
  background: #991b1b;
  color: var(--white);
  border-color: #991b1b;
}
.dash-btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--cream-soft);
  border: 1px solid var(--border);
  color: var(--text-mid);
  cursor: pointer;
  transition: all 0.2s;
  font-size: 0.85rem;
}
.dash-btn-icon:hover {
  background: var(--gold-pale);
  color: var(--gold);
  border-color: var(--gold);
}
.dash-btn-icon.danger:hover {
  background: #fef2f2;
  color: #991b1b;
  border-color: #fecaca;
}

/* Data Table */
.dash-table-wrap {
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  overflow: hidden;
}
.dash-table {
  width: 100%;
  border-collapse: collapse;
}
.dash-table thead {
  background: var(--cream-soft);
}
.dash-table th {
  padding: 14px 18px;
  text-align: left;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  border-bottom: 1px solid var(--border);
}
.dash-table td {
  padding: 14px 18px;
  font-size: 0.86rem;
  color: var(--text);
  border-bottom: 1px solid #f0ebe5;
  vertical-align: middle;
}
.dash-table tbody tr {
  transition: background 0.15s;
}
.dash-table tbody tr:hover {
  background: #fdfcfa;
}
.dash-table tbody tr:last-child td {
  border-bottom: none;
}
.dash-table .post-thumb {
  width: 56px;
  height: 42px;
  border-radius: 8px;
  object-fit: cover;
  background: var(--cream-soft);
}
.dash-table .post-title-cell {
  font-weight: 600;
  color: var(--text);
  max-width: 260px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.dash-table .post-title-cell a {
  color: var(--text);
  transition: color 0.2s;
}
.dash-table .post-title-cell a:hover {
  color: var(--gold);
}
.dash-table .actions-cell {
  display: flex;
  gap: 6px;
}

/* Status Badges */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.status-badge.published {
  background: #dcfce7;
  color: #166534;
}
.status-badge.draft {
  background: var(--gold-pale);
  color: var(--gold);
}
.status-badge.scheduled {
  background: #e8f0fe;
  color: #3b5bdb;
}
.status-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

/* Pagination */
.dash-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-top: 1px solid var(--border);
}
.dash-pagination-info {
  font-size: 0.82rem;
  color: var(--text-light);
}
.dash-pagination-btns {
  display: flex;
  gap: 4px;
}
.dash-page-btn {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text-mid);
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.dash-page-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.dash-page-btn.active {
  background: var(--brown);
  color: var(--white);
  border-color: var(--brown);
}
.dash-page-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* ─────────────────────────────────────────
   4. POST EDITOR
   ───────────────────────────────────────── */
.dash-editor-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 24px;
  align-items: start;
}
.dash-editor-main {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.dash-editor-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.dash-editor-panel {
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  overflow: hidden;
}
.dash-editor-panel-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dash-editor-panel-body {
  padding: 20px;
}
.dash-editor-panel-body .form-group {
  margin-bottom: 16px;
}
.dash-editor-panel-body .form-group:last-child {
  margin-bottom: 0;
}
.dash-editor-panel-body label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 7px;
}
.dash-editor-panel-body input[type="text"],
.dash-editor-panel-body input[type="url"],
.dash-editor-panel-body input[type="date"],
.dash-editor-panel-body textarea,
.dash-editor-panel-body select {
  width: 100%;
  padding: 11px 14px;
  border-radius: var(--r-sm);
  border: 1.5px solid var(--border);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 0.86rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.dash-editor-panel-body input:focus,
.dash-editor-panel-body textarea:focus,
.dash-editor-panel-body select:focus {
  border-color: var(--gold);
  background: var(--white);
}
.dash-editor-panel-body textarea {
  resize: vertical;
  min-height: 80px;
}
.dash-editor-panel-body select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238A6450' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}
.dash-editor-panel-body .char-count {
  font-size: 0.72rem;
  color: var(--text-light);
  text-align: right;
  margin-top: 4px;
}

/* Title Input */
.dash-editor-title {
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  padding: 20px;
}
.dash-editor-title input {
  width: 100%;
  border: none;
  outline: none;
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
  background: transparent;
}
.dash-editor-title input::placeholder {
  color: var(--text-light);
  opacity: 0.5;
}

/* Slug Input */
.dash-slug-row {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--cream-soft);
  border-radius: var(--r-sm);
  padding: 8px 12px;
}
.dash-slug-prefix {
  font-size: 0.82rem;
  color: var(--text-light);
  white-space: nowrap;
}
.dash-slug-input {
  border: none !important;
  background: transparent !important;
  padding: 0 !important;
  font-size: 0.86rem !important;
  flex: 1;
  min-width: 0;
}

/* Quill Editor Overrides */
.dash-quill-wrap {
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  overflow: hidden;
}
.dash-quill-wrap .ql-toolbar {
  border: none !important;
  border-bottom: 1px solid var(--border) !important;
  background: var(--cream-soft);
  padding: 8px 12px !important;
}
.dash-quill-wrap .ql-container {
  border: none !important;
  font-family: var(--sans) !important;
  font-size: 0.94rem !important;
  min-height: 400px;
}
.dash-quill-wrap .ql-editor {
  padding: 24px !important;
  line-height: 1.8;
  color: var(--text);
  min-height: 400px;
}
.dash-quill-wrap .ql-editor h1,
.dash-quill-wrap .ql-editor h2,
.dash-quill-wrap .ql-editor h3 {
  font-family: var(--serif);
  color: var(--text);
}
.dash-quill-wrap .ql-editor p {
  color: var(--text-mid);
  margin-bottom: 14px;
}
.dash-quill-wrap .ql-editor img {
  max-width: 100%;
  border-radius: var(--r);
  margin: 16px 0;
}
.dash-quill-wrap .ql-editor blockquote {
  border-left: 4px solid var(--gold);
  padding-left: 16px;
  margin: 16px 0;
  color: var(--text-light);
  font-style: italic;
}
.dash-quill-wrap .ql-editor pre {
  background: var(--cream-soft);
  border-radius: var(--r-sm);
  padding: 16px;
  font-family: "SF Mono", "Fira Code", monospace;
  font-size: 0.84rem;
  overflow-x: auto;
}
.dash-quill-wrap .ql-editor code {
  background: var(--cream-soft);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: "SF Mono", "Fira Code", monospace;
  font-size: 0.86em;
}

/* Featured Image Upload */
.dash-image-upload {
  border: 2px dashed var(--border);
  border-radius: var(--r);
  padding: 32px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  position: relative;
  overflow: hidden;
}
.dash-image-upload:hover {
  border-color: var(--gold);
  background: var(--cream-soft);
}
.dash-image-upload.has-image {
  padding: 0;
  border-style: solid;
}
.dash-image-upload .upload-icon {
  font-size: 2rem;
  color: var(--text-light);
  margin-bottom: 8px;
}
.dash-image-upload .upload-text {
  font-size: 0.86rem;
  color: var(--text-light);
}
.dash-image-upload .upload-text strong {
  color: var(--gold);
}
.dash-image-upload .upload-hint {
  font-size: 0.72rem;
  color: var(--text-light);
  margin-top: 4px;
  opacity: 0.7;
}
.dash-image-upload img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}
.dash-image-upload .remove-image {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: background 0.2s;
}
.dash-image-upload .remove-image:hover {
  background: #991b1b;
}

/* Tag Input */
.dash-tag-input-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 8px 12px;
  border-radius: var(--r-sm);
  border: 1.5px solid var(--border);
  background: var(--cream);
  min-height: 42px;
  cursor: text;
  transition: border-color 0.2s;
}
.dash-tag-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 100px;
  background: var(--teal-pale);
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 600;
}
.dash-tag-item .tag-remove {
  cursor: pointer;
  font-size: 0.7rem;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.dash-tag-item .tag-remove:hover {
  opacity: 1;
}
.dash-tag-input {
  border: none !important;
  background: transparent !important;
  padding: 2px 0 !important;
  font-size: 0.84rem !important;
  flex: 1;
  min-width: 80px;
  outline: none;
  box-shadow: none !important;
}

/* Toggle Switch */
.dash-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}
.dash-toggle-label {
  font-size: 0.84rem;
  color: var(--text);
  font-weight: 500;
}
.dash-toggle-switch {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}
.dash-toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.dash-toggle-switch .toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--border);
  border-radius: 24px;
  cursor: pointer;
  transition: background 0.25s var(--ease);
}
.dash-toggle-switch .toggle-slider::before {
  content: "";
  position: absolute;
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background: var(--white);
  border-radius: 50%;
  transition: transform 0.25s var(--ease);
}
.dash-toggle-switch input:checked + .toggle-slider {
  background: var(--teal);
}
.dash-toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(20px);
}

/* Editor Actions Bar */
.dash-editor-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  padding: 16px 0;
}

/* ─────────────────────────────────────────
   5. MEDIA LIBRARY
   ───────────────────────────────────────── */
.dash-media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}
.dash-media-card {
  background: var(--white);
  border-radius: var(--r);
  border: 2px solid transparent;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s;
  position: relative;
}
.dash-media-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}
.dash-media-card.selected {
  border-color: var(--teal);
}
.dash-media-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}
.dash-media-card-info {
  padding: 10px 12px;
}
.dash-media-card-info .media-name {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.dash-media-card-info .media-size {
  font-size: 0.68rem;
  color: var(--text-light);
}
.dash-media-card .media-check {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--teal);
  color: white;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}
.dash-media-card.selected .media-check {
  display: flex;
}
.dash-media-upload-zone {
  border: 2px dashed var(--border);
  border-radius: var(--r-lg);
  padding: 48px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  margin-bottom: 24px;
}
.dash-media-upload-zone:hover {
  border-color: var(--gold);
  background: var(--cream-soft);
}
.dash-media-upload-zone.dragover {
  border-color: var(--teal);
  background: var(--teal-pale);
}
.dash-media-upload-zone .upload-icon {
  font-size: 2.5rem;
  color: var(--text-light);
  margin-bottom: 12px;
}
.dash-media-upload-zone h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}
.dash-media-upload-zone p {
  font-size: 0.84rem;
  color: var(--text-light);
}

/* ─────────────────────────────────────────
   6. CATEGORIES & TAGS MANAGEMENT
   ───────────────────────────────────────── */
.dash-cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.dash-cat-card {
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: transform 0.2s, box-shadow 0.2s;
}
.dash-cat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--shadow-color);
}
.dash-cat-info h4 {
  font-size: 0.95rem;
  margin-bottom: 2px;
}
.dash-cat-info p {
  font-size: 0.78rem;
  color: var(--text-light);
  margin: 0;
}
.dash-cat-actions {
  display: flex;
  gap: 6px;
}
.dash-tag-chip .tag-remove {
  cursor: pointer;
  color: var(--text-light);
  font-size: 0.72rem;
  transition: color 0.2s;
}
.dash-tag-chip .tag-remove:hover {
  color: #991b1b;
}

/* ─────────────────────────────────────────
   7. MODAL
   ───────────────────────────────────────── */
.dash-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(4px);
}
.dash-modal-overlay.show {
  display: flex;
}
.dash-modal {
  background: var(--white);
  border-radius: var(--r-xl);
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
}
.dash-modal-header {
  padding: 24px 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dash-modal-header h3 {
  font-size: 1.1rem;
  margin: 0;
}
.dash-modal-close {
  background: none;
  border: none;
  font-size: 1.2rem;
  color: var(--text-light);
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s;
}
.dash-modal-close:hover {
  color: var(--text);
}
.dash-modal-body {
  padding: 20px 28px 28px;
}
.dash-modal-body .form-group {
  margin-bottom: 16px;
}
.dash-modal-body label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 7px;
}
.dash-modal-body input,
.dash-modal-body textarea {
  width: 100%;
  padding: 11px 14px;
  border-radius: var(--r-sm);
  border: 1.5px solid var(--border);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 0.86rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
}
.dash-modal-body input:focus,
.dash-modal-body textarea:focus {
  border-color: var(--gold);
  background: var(--white);
}
.dash-modal-footer {
  padding: 0 28px 24px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

/* ─────────────────────────────────────────
   8. TOAST NOTIFICATIONS
   ───────────────────────────────────────── */
.dash-toast {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 2000;
  background: var(--white);
  border-radius: var(--r);
  padding: 14px 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.86rem;
  font-weight: 500;
  transform: translateX(120%);
  transition: transform 0.4s var(--ease);
  max-width: 380px;
}
.dash-toast.show {
  transform: translateX(0);
}
.dash-toast.success {
  border-left: 4px solid var(--teal);
}
.dash-toast.success i {
  color: var(--teal);
}
.dash-toast.error {
  border-left: 4px solid #991b1b;
}
.dash-toast.error i {
  color: #991b1b;
}

/* ─────────────────────────────────────────
   9. LOADING SPINNER
   ───────────────────────────────────────── */
.dash-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
}
.dash-spinner {
  width: 36px;
  height: 36px;
  border: 3px solid var(--border);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
.dash-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-light);
}
.dash-empty i {
  font-size: 3rem;
  margin-bottom: 12px;
  opacity: 0.3;
}
.dash-empty h3 {
  font-size: 1.1rem;
  color: var(--text-mid);
  margin-bottom: 6px;
}
.dash-empty p {
  font-size: 0.88rem;
}

/* ─────────────────────────────────────────
   10. PUBLIC BLOG PAGE
   ───────────────────────────────────────── */
.blog-hero {
  background: linear-gradient(135deg, var(--brown) 0%, #2a1e14 100%);
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 100px 5% 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.blog-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(61, 43, 31, 0.82) 0%, rgba(42, 30, 20, 0.75) 100%);
  pointer-events: none;
}
.blog-hero-overlay {
  position: relative;
  z-index: 1;
}
.blog-hero h1 {
  color: var(--white);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.blog-hero p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 28px;
  position: relative;
  z-index: 1;
}
.blog-hero-search {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  padding: 6px;
  position: relative;
}
.blog-hero-search input {
  flex: 1;
  border: none;
  background: none;
  padding: 12px 18px;
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.9rem;
  outline: none;
}
.blog-hero-search input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.blog-hero-search button {
  padding: 12px 24px;
  border-radius: 100px;
  background: var(--gold);
  color: var(--white);
  border: none;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.86rem;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.blog-hero-search button:hover {
  background: var(--gold-light);
}

/* Blog Layout */
.blog-layout {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 5%;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}

/* Category Filter Bar */
.blog-cat-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.blog-cat-btn {
  padding: 8px 18px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-mid);
  cursor: pointer;
  transition: all 0.2s;
}
.blog-cat-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.blog-cat-btn.active {
  background: var(--brown);
  color: var(--white);
  border-color: var(--brown);
}

/* Featured Post */
.blog-featured {
  background: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 32px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  transition: transform 0.3s, box-shadow 0.3s;
}
.blog-featured:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 56px var(--shadow-color);
}
.blog-featured-img {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.blog-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.blog-featured:hover .blog-featured-img img {
  transform: scale(1.04);
}
.blog-featured-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.blog-featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: 100px;
  background: var(--gold-pale);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  width: fit-content;
}
.blog-featured-body h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  line-height: 1.3;
}
.blog-featured-body h2 a {
  color: var(--text);
  transition: color 0.2s;
}
.blog-featured-body h2 a:hover {
  color: var(--gold);
}
.blog-featured-body .blog-excerpt {
  font-size: 0.9rem;
  color: var(--text-mid);
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.78rem;
  color: var(--text-light);
}
.blog-meta i {
  margin-right: 4px;
}
.blog-meta .meta-sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--text-light);
  opacity: 0.5;
}

/* Blog Card Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px var(--shadow-color);
}
.blog-card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.blog-card:hover .blog-card-img img {
  transform: scale(1.04);
}
.blog-card-cat {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brown);
}
.blog-card-body {
  padding: 20px;
}
.blog-card-body h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  line-height: 1.35;
}
.blog-card-body h3 a {
  color: var(--text);
  transition: color 0.2s;
}
.blog-card-body h3 a:hover {
  color: var(--gold);
}
.blog-card-body .blog-excerpt {
  font-size: 0.86rem;
  color: var(--text-mid);
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card-tags .tag {
  font-size: 0.68rem;
}

/* Blog Sidebar */
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: sticky;
  top: 90px;
}
.blog-sidebar-widget {
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  padding: 24px;
}
.blog-sidebar-widget h4 {
  font-size: 0.92rem;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.blog-sidebar-cat-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.blog-sidebar-cat-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.84rem;
  color: var(--text-mid);
  cursor: pointer;
  transition: all 0.2s;
}
.blog-sidebar-cat-item:hover {
  background: var(--cream-soft);
  color: var(--brown);
}
.blog-sidebar-cat-item .cat-count {
  font-size: 0.72rem;
  background: var(--cream-soft);
  padding: 2px 8px;
  border-radius: 100px;
  color: var(--text-light);
}
.blog-sidebar-post-item {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #f0ebe5;
}
.blog-sidebar-post-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.blog-sidebar-post-item:first-child {
  padding-top: 0;
}
.blog-sidebar-post-thumb {
  width: 64px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--cream-soft);
}
.blog-sidebar-post-info h5 {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 4px;
}
.blog-sidebar-post-info h5 a {
  color: var(--text);
  transition: color 0.2s;
}
.blog-sidebar-post-info h5 a:hover {
  color: var(--gold);
}
.blog-sidebar-post-info .blog-meta {
  font-size: 0.72rem;
}

/* Blog Pagination */
.blog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 40px;
}

/* ─────────────────────────────────────────
   11. BLOG POST PAGE
   ───────────────────────────────────────── */
.blog-post-hero {
  position: relative;
  height: 480px;
  overflow: hidden;
}
.blog-post-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-post-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 48px 5%;
}
.blog-post-hero-content {
  max-width: 800px;
  color: var(--white);
}
.blog-post-hero-content .blog-cat-badge {
  display: inline-flex;
  padding: 5px 14px;
  border-radius: 100px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.blog-post-hero-content h1 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 14px;
  line-height: 1.25;
}
.blog-post-hero-content .blog-meta {
  color: rgba(255, 255, 255, 0.8);
}

/* Post Content Layout */
.blog-post-layout {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 5%;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}

/* Post Article */
.blog-post-article {
  max-width: 760px;
}
.blog-post-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.blog-post-content {
  font-size: 1.02rem;
  line-height: 1.9;
  color: var(--text-mid);
}
.blog-post-content h2 {
  font-size: 1.5rem;
  margin-top: 40px;
  margin-bottom: 16px;
}
.blog-post-content h3 {
  font-size: 1.2rem;
  margin-top: 32px;
  margin-bottom: 12px;
}
.blog-post-content p {
  margin-bottom: 20px;
  font-size: 1.02rem;
  line-height: 1.9;
}
.blog-post-content img {
  border-radius: var(--r);
  margin: 24px 0;
  width: 100%;
}
.blog-post-content blockquote {
  border-left: 4px solid var(--gold);
  padding: 16px 20px;
  margin: 24px 0;
  background: var(--cream-soft);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-style: italic;
  color: var(--text);
}
.blog-post-content ul,
.blog-post-content ol {
  margin: 16px 0;
  padding-left: 24px;
}
.blog-post-content li {
  margin-bottom: 8px;
  line-height: 1.8;
}
.blog-post-content ul {
  list-style: disc;
}
.blog-post-content ol {
  list-style: decimal;
}
.blog-post-content pre {
  background: var(--cream-soft);
  border-radius: var(--r-sm);
  padding: 20px;
  overflow-x: auto;
  margin: 20px 0;
  font-family: "SF Mono", "Fira Code", monospace;
  font-size: 0.86rem;
}
.blog-post-content code {
  background: var(--cream-soft);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: "SF Mono", "Fira Code", monospace;
  font-size: 0.88em;
}
.blog-post-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
}
.blog-post-content table th,
.blog-post-content table td {
  padding: 12px 16px;
  border: 1px solid var(--border);
  text-align: left;
  font-size: 0.9rem;
}
.blog-post-content table th {
  background: var(--cream-soft);
  font-weight: 600;
}
.blog-post-content a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.blog-post-content a:hover {
  color: var(--brown);
}
.blog-post-content hr {
  border: none;
  height: 1px;
  background: var(--border);
  margin: 32px 0;
}

/* Share Buttons */
.blog-share {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.blog-share-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-mid);
}
.blog-share-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-mid);
  font-size: 1rem;
  transition: all 0.2s;
  cursor: pointer;
}
.blog-share-btn:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* Related Posts */
.blog-related {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.blog-related h2 {
  font-size: 1.4rem;
  margin-bottom: 24px;
}
.blog-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ─────────────────────────────────────────
   12. RESPONSIVE
   ───────────────────────────────────────── */
@media (max-width: 1100px) {
  .dash-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .dash-editor-layout {
    grid-template-columns: 1fr;
  }
  .dash-editor-sidebar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

@media (max-width: 900px) {
  .blog-layout {
    grid-template-columns: 1fr;
  }
  .blog-sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .blog-post-layout {
    grid-template-columns: 1fr;
  }
  .blog-post-article {
    max-width: 100%;
  }
  .blog-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .blog-featured {
    grid-template-columns: 1fr;
  }

  /* Dashboard responsive */
  .dash-sidebar {
    transform: translateX(-100%);
  }
  .dash-sidebar.open {
    transform: translateX(0);
  }
  .dash-main {
    margin-left: 0;
  }
  .dash-menu-toggle {
    display: block;
  }
  .dash-content {
    padding: 20px;
  }
  .dash-editor-sidebar {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .blog-hero {
    padding: 60px 5% 40px;
  }
  .blog-hero-search {
    flex-direction: column;
    border-radius: var(--r);
  }
  .blog-hero-search button {
    border-radius: var(--r-sm);
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .blog-sidebar {
    grid-template-columns: 1fr;
  }
  .blog-related-grid {
    grid-template-columns: 1fr;
  }
  .blog-post-hero {
    height: 320px;
  }
  .blog-post-hero-content h1 {
    font-size: 1.5rem;
  }
  .blog-share {
    flex-wrap: wrap;
  }

  /* Dashboard */
  .dash-stats {
    grid-template-columns: 1fr;
  }
  .dash-action-bar {
    flex-direction: column;
    align-items: stretch;
  }
  .dash-search {
    min-width: unset;
  }
  .dash-filters {
    flex-wrap: wrap;
  }
  .dash-table-wrap {
    overflow-x: auto;
  }
  .dash-table {
    min-width: 700px;
  }
  .dash-cat-grid {
    grid-template-columns: 1fr;
  }
  .dash-media-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .dash-pagination {
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .blog-login-card {
    padding: 32px 24px;
  }
  .blog-media-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ─────────────────────────────────────────
   13. EMPTY STATES & UTILITIES
   ───────────────────────────────────────── */
.blog-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px;
  grid-column: 1 / -1;
}
.blog-tag-list .tag {
  cursor: pointer;
  transition: all 0.2s;
}
.blog-tag-list .tag:hover {
  background: var(--gold-pale);
  color: var(--gold);
}

/* Dark overlay for sidebar on mobile */
.dash-sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 99;
}
.dash-sidebar-overlay.show {
  display: block;
}
