/* ═══════════════════════════════════════════════════════════════════════
   SCLER Panel v4 — Softer, Modern CSS
   ═══════════════════════════════════════════════════════════════════════ */

:root {
  --bg:       #09090b;       /* zinc-950 */
  --bg2:      #18181b;      /* zinc-900 */
  --surface:  #18181b;
  --surface2: #27272a;      /* zinc-800 */
  --surface3: #3f3f46;      /* zinc-700 */
  --border:   rgba(255, 255, 255, 0.06);
  --border2:  rgba(255, 255, 255, 0.12);
  --txt:      #f4f4f5;      /* zinc-100 */
  --txt2:     #a1a1aa;      /* zinc-400 */
  --txt3:     #71717a;      /* zinc-500 */
  --accent:   #0284c7;      /* sky-600 */
  --accent2:  #0ea5e9;      /* sky-500 */
  --accent-a: rgba(14, 165, 233, 0.08);
  --green:    #10b981;      /* emerald-500 */
  --green-a:  rgba(16, 185, 129, 0.08);
  --red:      #ef4444;      /* red-500 */
  --red-a:    rgba(239, 68, 68, 0.08);
  --orange:   #f97316;      /* orange-500 */
  --orange-a: rgba(249, 115, 22, 0.08);
  --blue:     #3b82f6;      /* blue-500 */
  --blue-a:   rgba(59, 130, 246, 0.08);
  --yellow:   #eab308;
  --radius:   8px;
  --radius-s: 6px;
  --radius-l: 12px;
  --sidebar:  240px;
  --topbar:   56px;
  --speed:    .15s;
}

[data-theme="light"] {
  --bg:       #f9fafb;      /* gray-50 */
  --bg2:      #ffffff;
  --surface:  #ffffff;
  --surface2: #f3f4f6;      /* gray-100 */
  --surface3: #e5e7eb;      /* gray-200 */
  --border:   rgba(0, 0, 0, 0.06);
  --border2:  rgba(0, 0, 0, 0.12);
  --txt:      #111827;      /* gray-900 */
  --txt2:     #4b5563;      /* gray-600 */
  --txt3:     #9ca3af;      /* gray-400 */
  --accent-a: rgba(14, 165, 233, 0.06);
}

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

html {
  font-size: 14px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--txt);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: var(--surface2);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--surface3);
}

/* ── Layout ── */
.layout {
  display: flex;
  min-height: 100vh;
}
.main {
  flex: 1;
  margin-left: var(--sidebar);
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.content {
  padding: 24px;
  flex: 1;
}

/* ── Sidebar ── */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: var(--sidebar);
  background: var(--bg2);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  z-index: 100;
  overflow-y: auto;
  transition: transform var(--speed) ease-in-out;
}
.sb-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}
.sb-logo {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: var(--accent);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 13px;
  color: #fff;
  flex-shrink: 0;
}
.sb-title {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.2px;
}
.sb-sub {
  font-size: 10px;
  color: var(--txt3);
  font-weight: 500;
}
.sidebar-close {
  display: none;
  background: none;
  border: none;
  color: var(--txt3);
  font-size: 16px;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
  border-radius: 4px;
  line-height: 1;
}
.sidebar-close:hover {
  background: var(--surface2);
  color: var(--txt);
}

.sb-group {
  padding: 16px 20px 6px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--txt3);
  text-transform: uppercase;
}
.sb-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  margin: 1px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--txt2);
  transition: all var(--speed);
  cursor: pointer;
  border: 1px solid transparent;
  position: relative;
}
.sb-item:hover {
  background: var(--surface2);
  color: var(--txt);
}
.sb-item.active {
  background: var(--accent-a);
  color: var(--accent2);
  font-weight: 600;
}
.sb-item.active::before {
  content: '';
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 16px;
  border-radius: 0 2px 2px 0;
  background: var(--accent);
}
.sb-icon {
  width: 16px;
  height: 16px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: inherit;
}
.sb-icon svg {
  width: 15px;
  height: 15px;
}
.sb-badge {
  margin-left: auto;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 9px;
  font-size: 9px;
  font-weight: 600;
  display: grid;
  place-items: center;
  background: var(--red);
  color: #fff;
}
.sb-footer {
  margin-top: auto;
  padding: 8px 0;
  border-top: 1px solid var(--border);
}

/* ── Topbar ── */
.topbar {
  height: var(--topbar);
  min-height: var(--topbar);
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 24px;
  position: sticky;
  top: 0;
  z-index: 50;
  gap: 16px;
}
.topbar-left {
  flex: 1;
}
.topbar-page {
  font-weight: 600;
  font-size: 15px;
  color: var(--txt);
}
.topbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--txt);
  font-size: 18px;
  cursor: pointer;
  padding: 6px;
}

.theme-btn {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--txt2);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all var(--speed);
}
.theme-btn:hover {
  border-color: var(--txt3);
  color: var(--txt);
}

.user-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 3px 10px 3px 3px;
  border-radius: 20px;
  background: var(--surface2);
  border: 1px solid var(--border);
  cursor: pointer;
  position: relative;
  transition: all var(--speed);
}
.user-pill:hover {
  border-color: var(--border2);
}
.avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent);
  display: grid;
  place-items: center;
  font-weight: 600;
  font-size: 10px;
  color: #fff;
}
.uname {
  font-size: 12px;
  font-weight: 500;
  color: var(--txt);
}
.user-drop {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  width: 180px;
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 99;
}
.user-drop.show {
  display: flex;
}
.drop-info {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
}
.drop-info strong {
  display: block;
  font-size: 12px;
}
.drop-info small {
  font-size: 10px;
  color: var(--txt3);
}
.user-drop a {
  padding: 8px 14px;
  font-size: 12px;
  color: var(--txt2);
  transition: all var(--speed);
  display: flex;
  align-items: center;
  gap: 8px;
}
.user-drop a:hover {
  background: var(--surface2);
  color: var(--txt);
}
.user-drop a.danger:hover {
  background: var(--red-a);
  color: var(--red);
}

/* ── Cards ── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.card-head {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.card-head h3 {
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  color: var(--txt);
}
.card-body {
  padding: 18px;
}
.card-body.np {
  padding: 0;
}

/* ── Stat Cards ── */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}
.stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  transition: border-color var(--speed);
}
.stat:hover {
  border-color: var(--border2);
}
.stat-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.stat-icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  font-size: 14px;
  flex-shrink: 0;
  color: var(--txt);
}
.stat-icon svg {
  width: 16px;
  height: 16px;
  color: inherit;
}
.stat-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--txt3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.stat-val {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.stat-hint {
  font-size: 11px;
  color: var(--txt3);
  margin-top: 6px;
}

/* ── Hero ── */
.hero {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 24px;
}
.hero-label {
  font-size: 10px;
  color: var(--accent2);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.hero h1 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.4px;
  margin-bottom: 4px;
}
.hero p {
  font-size: 13px;
  color: var(--txt2);
}
.hero-pills {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.hero-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-s);
  padding: 8px 12px;
  min-width: 130px;
  transition: border-color var(--speed);
}
.hero-pill:hover {
  border-color: var(--border2);
}
.hero-pill strong {
  font-size: 14px;
  font-weight: 600;
}
.hero-pill small {
  font-size: 10px;
  color: var(--txt3);
  display: block;
}
.hero-pill .pi {
  font-size: 14px;
  display: grid;
  place-items: center;
  color: var(--txt2);
}
.hero-pill .pi svg {
  width: 16px;
  height: 16px;
}

/* ── Tables ── */
.tbl-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}
table {
  width: 100%;
  border-collapse: collapse;
}
th {
  padding: 10px 16px;
  font-size: 11px;
  font-weight: 600;
  color: var(--txt2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  background: var(--surface2);
}
td {
  padding: 11px 16px;
  font-size: 13px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
  color: var(--txt);
}
tr:last-child td {
  border-bottom: none;
}
tr:hover td {
  background: rgba(255, 255, 255, 0.015);
}
[data-theme="light"] tr:hover td {
  background: rgba(0, 0, 0, 0.01);
}
tbody tr {
  cursor: pointer;
}

/* ── Badges ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 500;
  white-space: nowrap;
}
.badge svg {
  width: 12px;
  height: 12px;
  color: inherit;
}
.badge-green { background: var(--green-a); color: var(--green); }
.badge-red { background: var(--red-a); color: var(--red); }
.badge-orange { background: var(--orange-a); color: var(--orange); }
.badge-blue { background: var(--blue-a); color: var(--blue); }
.badge-gray { background: var(--surface2); color: var(--txt2); }
.badge-purple { background: var(--accent-a); color: var(--accent2); }

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}
.dot-g { background: var(--green); }
.dot-r { background: var(--red); }

/* ── Buttons ── */
.btn {
  font-family: inherit;
  font-size: 12px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
  transition: all var(--speed);
  outline: none;
}
.btn:active {
  transform: scale(0.98);
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--accent2);
}
.btn-secondary {
  background: var(--surface2);
  color: var(--txt);
  border-color: var(--border);
}
.btn-secondary:hover {
  background: var(--surface3);
}
.btn-danger {
  background: var(--red-a);
  color: var(--red);
  border-color: rgba(239, 68, 68, 0.15);
}
.btn-danger:hover {
  background: var(--red);
  color: #fff;
}
.btn-success {
  background: var(--green-a);
  color: var(--green);
  border-color: rgba(16, 185, 129, 0.15);
}
.btn-success:hover {
  background: var(--green);
  color: #fff;
}
.btn-sm {
  padding: 6px 12px;
  font-size: 11px;
}
.btn-xs {
  padding: 4px 8px;
  font-size: 10px;
  border-radius: 4px;
}
.btn-icon {
  width: 32px;
  height: 32px;
  padding: 0;
  border-radius: 6px;
  display: grid;
  place-items: center;
}
.btn-icon svg {
  width: 14px;
  height: 14px;
}

/* ── Forms ── */
.form-group {
  margin-bottom: 14px;
}
.form-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: var(--txt2);
  margin-bottom: 4px;
  letter-spacing: 0.2px;
}
.form-input {
  width: 100%;
  padding: 8px 12px;
  font-size: 13px;
  font-family: inherit;
  background: var(--surface);
  color: var(--txt);
  border: 1px solid var(--border2);
  border-radius: var(--radius-s);
  transition: all var(--speed);
  outline: none;
}
.form-input:focus {
  border-color: var(--accent2);
}
.form-input::placeholder {
  color: var(--txt3);
}
.form-hint {
  font-size: 10px;
  color: var(--txt3);
  margin-top: 4px;
}
select.form-input {
  cursor: pointer;
}

/* ── Page Header ── */
.page-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}
.page-head h1 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.3px;
}
.page-head p {
  font-size: 12px;
  color: var(--txt3);
  margin-top: 2px;
}

/* ── Grid ── */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 1000px) {
  .grid-2, .grid-3 {
    grid-template-columns: 1fr;
  }
}

/* ── Activity / Item rows ── */
.row-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
  transition: background var(--speed);
}
.row-item:last-child {
  border-bottom: none;
}
.row-item:hover {
  background: rgba(255, 255, 255, 0.01);
}
.row-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  font-size: 13px;
  flex-shrink: 0;
  color: var(--txt);
}
.row-icon svg {
  width: 14px;
  height: 14px;
  color: inherit;
}
.row-info {
  flex: 1;
  min-width: 0;
}
.row-title {
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.row-sub {
  font-size: 11px;
  color: var(--txt3);
  margin-top: 1px;
}
.row-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* ── Modal ── */
.modal-bg {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-bg.hidden {
  display: none;
}
.modal {
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  width: 100%;
  max-width: 440px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.modal-head {
  padding: 12px 18px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal-head h2 {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
}
.modal-close {
  background: none;
  border: none;
  color: var(--txt3);
  font-size: 16px;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: all var(--speed);
}
.modal-close:hover {
  color: var(--txt);
  background: var(--surface2);
}
.modal-body {
  padding: 18px;
  max-height: 60vh;
  overflow-y: auto;
}
.modal-foot {
  padding: 10px 18px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

/* ── Toasts ── */
#toast-area {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.toast {
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  animation: slideInRight 0.2s ease;
  transition: all 0.2s;
}
.toast-ok { background: var(--green); }
.toast-err { background: var(--red); }
.toast-warn { background: var(--orange); }
.toast-info { background: var(--blue); }
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ── Login ── */
.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
}
.login-box {
  width: 100%;
  max-width: 360px;
  padding: 20px;
}
.login-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.login-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.login-tabs {
  display: flex;
  border-bottom: 1px solid var(--border);
}
.login-tab {
  flex: 1;
  padding: 12px;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  color: var(--txt2);
  cursor: pointer;
  transition: all var(--speed);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}
.login-tab.active {
  color: var(--accent2);
  border-bottom-color: var(--accent);
}
.login-body {
  padding: 20px;
}
.login-err {
  display: none;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 12px;
  margin-bottom: 12px;
  background: var(--red-a);
  color: var(--red);
  border: 1px solid rgba(239, 68, 68, 0.15);
}

/* ── Proc cards ── */
.proc {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  transition: border-color var(--speed);
}
.proc:hover {
  border-color: var(--border2);
}
.proc-name {
  font-weight: 600;
  font-size: 14px;
}
.proc-sub {
  font-size: 11px;
  color: var(--txt3);
  margin-top: 2px;
}
.proc-rows {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.proc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}
.proc-row:last-child {
  border-bottom: none;
}

/* ── Log viewer ── */
.log-box {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px;
  font-family: 'JetBrains Mono', 'Fira Code', monospace;
  font-size: 11px;
  height: 380px;
  overflow-y: auto;
  line-height: 1.6;
  color: var(--txt2);
}

/* ── Filters ── */
.filters {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
  align-items: center;
}

/* ── Empty state ── */
.empty {
  text-align: center;
  padding: 32px 16px;
  color: var(--txt3);
}
.empty-icon {
  font-size: 24px;
  margin-bottom: 8px;
}
.empty p {
  font-size: 12px;
  font-weight: 500;
}

/* ── Utils ── */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.w-full { width: 100%; }
.text-right { text-align: right; }
.text-center { text-align: center; }
.mono { font-family: 'JetBrains Mono', 'Fira Code', monospace; }
.truncate { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.fw-700 { font-weight: 600; }  /* Make all bold lighter, cleaner */
.fw-800 { font-weight: 600; }
.clr-green { color: var(--green); }
.clr-red { color: var(--red); }
.clr-orange { color: var(--orange); }
.clr-accent { color: var(--accent2); }
.clr-txt3 { color: var(--txt3); }

.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  z-index: 90;
  opacity: 0;
  transition: opacity var(--speed) ease-in-out;
  pointer-events: none;
}
.sidebar-overlay.show {
  display: block;
  opacity: 1;
  pointer-events: auto;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .sidebar {
    transform: translateX(-100%);
  }
  .sidebar.open {
    transform: translateX(0);
  }
  .main {
    margin-left: 0;
  }
  .mobile-toggle {
    display: block;
  }
  .content {
    padding: 16px;
  }
  .stat-grid {
    grid-template-columns: 1fr 1fr;
  }
  .sidebar-close {
    display: block;
  }
}
