@import url('https://fonts.googleapis.com/css2?family=Golos+Text:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --bg: #0f1117;
  --bg2: #161b27;
  --bg3: #1e2535;
  --border: #2a3347;
  --accent: #3b82f6;
  --accent2: #1d4ed8;
  --success: #22c55e;
  --warning: #f59e0b;
  --danger: #ef4444;
  --text: #e2e8f0;
  --text2: #94a3b8;
  --text3: #64748b;
  --radius: 10px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
}

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

body {
  font-family: 'Golos Text', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  font-size: 14px;
  line-height: 1.5;
}

/* LAYOUT */
.layout { display: flex; min-height: 100vh; }

.sidebar {
  width: 240px;
  background: var(--bg2);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  position: fixed;
  height: 100vh;
  z-index: 100;
}

.sidebar-logo {
  padding: 20px 20px 16px;
  border-bottom: 1px solid var(--border);
}

.sidebar-logo h1 {
  font-size: 16px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.5px;
}

.sidebar-logo span {
  font-size: 11px;
  color: var(--text3);
  display: block;
  margin-top: 2px;
}

.sidebar-nav { flex: 1; padding: 12px 0; overflow-y: auto; }

.nav-section {
  padding: 0 12px;
  margin-bottom: 4px;
}

.nav-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text3);
  padding: 8px 8px 4px;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--text2);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  transition: all 0.15s;
  margin-bottom: 2px;
}

.nav-item:hover { background: var(--bg3); color: var(--text); }
.nav-item.active { background: rgba(59,130,246,0.15); color: var(--accent); }
.nav-item svg { width: 16px; height: 16px; flex-shrink: 0; }

.sidebar-footer {
  padding: 16px;
  border-top: 1px solid var(--border);
}

.user-info {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.user-avatar {
  width: 32px; height: 32px;
  background: var(--accent2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px; color: white; flex-shrink: 0;
}

.user-name { font-size: 13px; font-weight: 600; }
.user-role { font-size: 11px; color: var(--text3); }

.btn-logout {
  display: flex; align-items: center; gap: 6px;
  width: 100%; padding: 7px 10px;
  background: transparent; border: 1px solid var(--border);
  border-radius: 7px; color: var(--text2); font-size: 12px;
  cursor: pointer; text-decoration: none;
  transition: all 0.15s;
}

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

.main {
  margin-left: 240px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.topbar {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar h2 { font-size: 18px; font-weight: 700; }
.topbar-actions { display: flex; gap: 10px; align-items: center; }

.content { padding: 24px 28px; }

/* CARDS / STATS */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.stat-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: border-color 0.2s;
}

.stat-card:hover { border-color: var(--accent); }
.stat-card .stat-label { font-size: 12px; color: var(--text3); margin-bottom: 8px; }
.stat-card .stat-value { font-size: 28px; font-weight: 700; font-family: 'JetBrains Mono', monospace; }
.stat-card.blue .stat-value { color: var(--accent); }
.stat-card.green .stat-value { color: var(--success); }
.stat-card.yellow .stat-value { color: var(--warning); }
.stat-card.red .stat-value { color: var(--danger); }

/* TABLE */
.card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

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

.card-title { font-size: 15px; font-weight: 600; }

table { width: 100%; border-collapse: collapse; }

thead th {
  padding: 10px 14px;
  text-align: left;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  color: var(--text3);
  background: var(--bg3);
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}

tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.1s;
}

tbody tr:last-child { border-bottom: none; }
tbody tr:hover { background: rgba(59,130,246,0.04); }

td {
  padding: 10px 14px;
  font-size: 13px;
  color: var(--text);
}

td.mono { font-family: 'JetBrains Mono', monospace; font-size: 12px; }

/* BADGES */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 9px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}

.badge-green { background: rgba(34,197,94,0.15); color: #4ade80; }
.badge-red { background: rgba(239,68,68,0.15); color: #f87171; }
.badge-yellow { background: rgba(245,158,11,0.15); color: #fbbf24; }
.badge-blue { background: rgba(59,130,246,0.15); color: #60a5fa; }
.badge-gray { background: rgba(100,116,139,0.15); color: #94a3b8; }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px; border-radius: 8px;
  font-size: 13px; font-weight: 600; font-family: inherit;
  cursor: pointer; text-decoration: none; border: none;
  transition: all 0.15s; white-space: nowrap;
}

.btn-primary { background: var(--accent); color: white; }
.btn-primary:hover { background: var(--accent2); }
.btn-success { background: var(--success); color: white; }
.btn-success:hover { background: #16a34a; }
.btn-warning { background: var(--warning); color: white; }
.btn-danger { background: var(--danger); color: white; }
.btn-danger:hover { background: #dc2626; }
.btn-outline { background: transparent; border: 1px solid var(--border); color: var(--text2); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-sm { padding: 5px 10px; font-size: 12px; }
.btn-xs { padding: 3px 8px; font-size: 11px; border-radius: 6px; }

/* FORMS */
.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 12px; font-weight: 600; color: var(--text2); }

input, select, textarea {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 9px 12px;
  color: var(--text);
  font-family: inherit;
  font-size: 13px;
  transition: border-color 0.15s;
  width: 100%;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--accent);
}

textarea { resize: vertical; min-height: 80px; }
select option { background: var(--bg3); }

.form-actions {
  display: flex; gap: 10px; align-items: center;
  padding-top: 8px; margin-top: 8px;
  border-top: 1px solid var(--border);
}

/* SEARCH BAR */
.search-bar {
  display: flex; gap: 8px; align-items: center;
}

.search-bar input {
  width: 240px;
  padding: 7px 12px;
}

/* SHIFTS PROGRESS BAR */
.shifts-bar {
  display: flex; align-items: center; gap: 8px;
}

.bar-track {
  flex: 1; height: 6px; background: var(--bg3);
  border-radius: 3px; overflow: hidden; min-width: 80px;
}

.bar-fill {
  height: 100%; border-radius: 3px;
  background: var(--success);
  transition: width 0.3s;
}

.bar-fill.warning { background: var(--warning); }
.bar-fill.danger { background: var(--danger); }
.bar-text { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--text2); white-space: nowrap; }

/* DETAIL PAGE */
.detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 0;
}

.detail-item {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
}

.detail-item:nth-child(even) { border-right: none; }
.detail-label { font-size: 11px; color: var(--text3); margin-bottom: 4px; }
.detail-value { font-size: 14px; font-weight: 500; }
.detail-value.mono { font-family: 'JetBrains Mono', monospace; font-size: 13px; }

/* ALERT */
.alert {
  padding: 12px 16px; border-radius: 8px;
  font-size: 13px; margin-bottom: 16px;
  display: flex; align-items: center; gap: 8px;
}

.alert-success { background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.3); color: #4ade80; }
.alert-danger { background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.3); color: #f87171; }
.alert-warning { background: rgba(245,158,11,0.1); border: 1px solid rgba(245,158,11,0.3); color: #fbbf24; }

/* PAGINATION / EMPTY */
.empty-state {
  text-align: center; padding: 60px 20px; color: var(--text3);
}

.empty-state svg { width: 48px; height: 48px; margin: 0 auto 12px; display: block; opacity: 0.4; }
.empty-state p { font-size: 14px; }

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

.login-box {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  width: 360px;
  box-shadow: var(--shadow);
}

.login-box h1 { font-size: 22px; font-weight: 700; margin-bottom: 4px; }
.login-box p { font-size: 13px; color: var(--text3); margin-bottom: 28px; }

/* SCROLLBAR */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--text3); }

/* ROW DANGER */
tr.row-danger td { background: rgba(239,68,68,0.06); }
tr.row-warning td { background: rgba(245,158,11,0.06); }

.tag { display: inline-block; padding: 2px 7px; border-radius: 4px; font-size: 11px; font-family: 'JetBrains Mono', monospace; background: var(--bg3); color: var(--text2); }

.badge-orange { background: rgba(249,115,22,0.15); color: #fb923c; }
.badge-purple { background: rgba(168,85,247,0.15); color: #c084fc; }
.badge-red-bright { background: rgba(239,68,68,0.25); color: #ef4444; font-weight:700; }

/* Colored status selects */
select.status-select { border-radius:6px; font-weight:600; font-size:12px; padding:3px 8px; height:26px; cursor:pointer; border:1px solid transparent; }
select.status-select.s-green  { background:rgba(34,197,94,0.15);  color:#4ade80; border-color:rgba(34,197,94,0.3); }
select.status-select.s-blue   { background:rgba(59,130,246,0.15); color:#60a5fa; border-color:rgba(59,130,246,0.3); }
select.status-select.s-orange { background:rgba(249,115,22,0.15); color:#fb923c; border-color:rgba(249,115,22,0.3); }
select.status-select.s-red    { background:rgba(239,68,68,0.15);  color:#f87171; border-color:rgba(239,68,68,0.3); }
select.status-select.s-red-bright { background:rgba(239,68,68,0.25); color:#ef4444; border-color:rgba(239,68,68,0.5); font-weight:700; }
select.status-select.s-gray   { background:rgba(100,116,139,0.15); color:#94a3b8; border-color:rgba(100,116,139,0.3); }
select.status-select option { background: #1e2535; color: #e2e8f0; font-weight:400; }

a.stat-card:hover { border-color: var(--accent); transform: translateY(-1px); transition: all 0.15s; }

/* Column resize handles visible */
thead th { border-right: 1px solid var(--border); }
thead th:last-child { border-right: none; }
thead th:hover { background: var(--bg2); }
thead th div[style*="col-resize"] { background: var(--border); opacity: 0; transition: opacity 0.15s; }
thead th:hover div[style*="col-resize"] { opacity: 1; }

/* Visible column separators in header */
thead th { border-right: 2px solid rgba(59,130,246,0.25) !important; }
thead th:last-child { border-right: none !important; }

/* ── LIGHT THEME ── */
body.light {
  --bg: #f0f2f7;
  --bg2: #ffffff;
  --bg3: #e8eaf0;
  --border: #d0d5e0;
  --accent: #2563eb;
  --accent2: #1d4ed8;
  --text: #1e2535;
  --text2: #4a5568;
  --text3: #718096;
  --shadow: 0 4px 24px rgba(0,0,0,0.1);
}
body.light input, body.light select, body.light textarea {
  background: #f8f9fc;
  color: #1e2535;
  border-color: #d0d5e0;
}
body.light thead th { background: #e2e6f0; color: #4a5568; }
body.light .sidebar { background: #ffffff; border-color: #d0d5e0; }
body.light .sidebar-logo h1 { color: var(--accent); }
body.light .nav-item { color: #4a5568; }
body.light .nav-item:hover { background: #f0f2f7; color: #1e2535; }
body.light .nav-item.active { background: rgba(37,99,235,0.1); color: var(--accent); }
body.light .topbar { background: #ffffff; border-color: #d0d5e0; }
body.light tbody tr:hover { background: rgba(37,99,235,0.04); }
body.light .tag { background: #e2e6f0; color: #4a5568; }
body.light .btn-outline { border-color: #d0d5e0; color: #4a5568; }
body.light .btn-outline:hover { border-color: var(--accent); color: var(--accent); }
body.light .stat-card { background: #ffffff; border-color: #d0d5e0; }
body.light .card { background: #ffffff; border-color: #d0d5e0; }
body.light .login-box { background: #ffffff; border-color: #d0d5e0; }
body.light #confirm-modal > div { background: #ffffff; border-color: #d0d5e0; }
body.light select option { background: #ffffff; color: #1e2535; }

/* Theme toggle button */
.theme-toggle {
  background: none; border: 1px solid var(--border);
  border-radius: 20px; padding: 4px 10px; cursor: pointer;
  color: var(--text2); font-size: 13px; display: flex;
  align-items: center; gap: 5px; transition: all 0.2s;
}
.theme-toggle:hover { border-color: var(--accent); color: var(--accent); }

/* ── DRAG COLUMNS ── */
thead th.dragging { opacity: 0.5; }
thead th.drag-over { border-left: 3px solid var(--accent) !important; }
thead th { cursor: grab; }
thead th:active { cursor: grabbing; }

/* ── TOAST NOTIFICATIONS ── */
#toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  min-width: 260px;
  max-width: 400px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  pointer-events: all;
  animation: toast-in 0.3s ease;
  border: 1px solid transparent;
}

.toast.success { background: rgba(34,197,94,0.15); border-color: rgba(34,197,94,0.4); color: #4ade80; }
.toast.error   { background: rgba(239,68,68,0.15);  border-color: rgba(239,68,68,0.4);  color: #f87171; }
.toast.info    { background: rgba(59,130,246,0.15); border-color: rgba(59,130,246,0.4); color: #60a5fa; }
.toast.warning { background: rgba(245,158,11,0.15); border-color: rgba(245,158,11,0.4); color: #fbbf24; }

body.light .toast.success { background: #f0fdf4; border-color: #86efac; color: #16a34a; }
body.light .toast.error   { background: #fef2f2; border-color: #fca5a5; color: #dc2626; }
body.light .toast.info    { background: #eff6ff; border-color: #93c5fd; color: #2563eb; }
body.light .toast.warning { background: #fffbeb; border-color: #fcd34d; color: #d97706; }

.toast-icon { font-size: 18px; flex-shrink: 0; }
.toast-close { margin-left: auto; cursor: pointer; opacity: 0.6; font-size: 16px; }
.toast-close:hover { opacity: 1; }

@keyframes toast-in {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes toast-out {
  from { opacity: 1; transform: translateX(0); }
  to   { opacity: 0; transform: translateX(40px); }
}

/* ── GLOBAL SEARCH ── */
#global-search-btn {
  display: flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: 8px;
  background: var(--bg3); border: 1px solid var(--border);
  color: var(--text2); cursor: pointer; font-size: 13px;
  transition: all 0.15s;
}
#global-search-btn:hover { border-color: var(--accent); color: var(--accent); }
#global-search-btn kbd {
  font-size: 10px; padding: 1px 5px; border-radius: 4px;
  background: var(--border); color: var(--text3);
}

#global-search-overlay {
  display: none; position: fixed; inset: 0; z-index: 10000;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(4px);
  align-items: flex-start; justify-content: center;
  padding-top: 80px;
}
#global-search-overlay.open { display: flex; }

#global-search-box {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 14px; width: 640px; max-width: 95vw;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  overflow: hidden;
}

#global-search-input {
  width: 100%; padding: 16px 20px;
  font-size: 16px; background: transparent;
  border: none; border-bottom: 1px solid var(--border);
  color: var(--text); outline: none;
}

#global-search-results {
  max-height: 420px; overflow-y: auto; padding: 8px 0;
}

.search-result-group { padding: 4px 0; }
.search-result-label {
  padding: 6px 20px 2px;
  font-size: 10px; text-transform: uppercase; letter-spacing: 1px;
  color: var(--text3); font-weight: 600;
}
.search-result-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 20px; cursor: pointer; text-decoration: none;
  color: var(--text); transition: background 0.1s;
}
.search-result-item:hover, .search-result-item.active {
  background: rgba(59,130,246,0.1);
}
.search-result-icon { font-size: 16px; flex-shrink: 0; }
.search-result-main { font-size: 13px; font-weight: 500; }
.search-result-sub { font-size: 11px; color: var(--text3); margin-top: 1px; }
.search-result-badge { margin-left: auto; flex-shrink: 0; }
.search-empty { padding: 32px; text-align: center; color: var(--text3); font-size: 14px; }
.search-hint { padding: 10px 20px; font-size: 11px; color: var(--text3); border-top: 1px solid var(--border); display:flex; gap:16px; }
.search-hint kbd { font-size: 10px; padding: 1px 5px; border-radius: 4px; background: var(--border); }

/* ── TOOLTIPS ── */
.tooltip-wrap { position: relative; display: inline-flex; align-items: center; gap: 5px; }
.tooltip-icon {
  width: 15px; height: 15px; border-radius: 50%;
  background: var(--border); color: var(--text3);
  font-size: 10px; font-weight: 700; cursor: help;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: background 0.15s;
}
.tooltip-icon:hover { background: var(--accent); color: #fff; }
.tooltip-box {
  display: none; position: absolute; bottom: calc(100% + 6px); left: 0;
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 8px; padding: 8px 12px; font-size: 12px;
  color: var(--text2); line-height: 1.5; white-space: normal;
  width: 240px; box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  z-index: 9999; pointer-events: none;
}
.tooltip-wrap:hover .tooltip-box { display: block; }
body.light .tooltip-box { background: #fff; box-shadow: 0 4px 16px rgba(0,0,0,0.15); }

/* ── SEARCHABLE SELECT ── */
.select-search-wrap { position: relative; }
.select-search-input {
  width: 100%; padding: 6px 10px 6px 30px;
  font-size: 12px; background: var(--bg3);
  border: 1px solid var(--border); border-bottom: none;
  border-radius: 8px 8px 0 0; color: var(--text); outline: none;
  box-sizing: border-box;
}
.select-search-input:focus { border-color: var(--accent); }
.select-search-icon {
  position: absolute; left: 9px; top: 50%;
  transform: translateY(-50%); color: var(--text3); font-size: 13px;
  pointer-events: none;
}
.select-search-wrap select {
  border-radius: 0 0 8px 8px !important;
  border-top: none !important;
}
.select-search-wrap select option.hidden { display: none; }
.select-no-results {
  padding: 8px 12px; font-size: 12px; color: var(--text3);
  background: var(--bg3); border: 1px solid var(--border);
  border-top: none; border-radius: 0 0 8px 8px;
  display: none;
}

/* ── MOBILE RESPONSIVE ── */
@media (max-width: 768px) {
  /* Sidebar */
  .sidebar {
    position: fixed; left: -240px; top: 0; height: 100vh;
    z-index: 1000; transition: left 0.25s ease;
  }
  .sidebar.open { left: 0; }
  .sidebar-overlay {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,0.5); z-index: 999;
  }
  .sidebar-overlay.open { display: block; }

  /* Main layout */
  .layout { grid-template-columns: 1fr !important; }
  .main { margin-left: 0 !important; }

  /* Topbar */
  .topbar {
    padding: 10px 12px !important;
    flex-wrap: wrap; gap: 8px;
  }
  .topbar h2 { font-size: 16px !important; }
  .topbar-actions { flex-wrap: wrap; gap: 6px; }

  /* Content */
  .content { padding: 10px !important; }

  /* Tables - horizontal scroll */
  .card { overflow-x: auto; }
  table { min-width: 600px; font-size: 12px; }
  th, td { padding: 8px 10px !important; }

  /* Stats grid */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }
  .stat-value { font-size: 24px !important; }

  /* Forms */
  .form-grid { grid-template-columns: 1fr !important; }
  .form-group { margin-bottom: 12px; }

  /* Cards grid */
  [style*="grid-template-columns: 1fr 380px"],
  [style*="grid-template-columns:1fr 380px"] {
    grid-template-columns: 1fr !important;
  }
  [style*="grid-template-columns: repeat(4"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  [style*="grid-template-columns: repeat(3"] {
    grid-template-columns: 1fr !important;
  }
  [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  /* Search bar */
  .search-bar { flex-wrap: wrap; gap: 6px; }
  .search-bar select, .search-bar input { font-size: 12px; }

  /* Burger button */
  .burger-btn {
    display: flex !important;
    align-items: center; justify-content: center;
    width: 36px; height: 36px; border-radius: 8px;
    background: var(--bg3); border: 1px solid var(--border);
    cursor: pointer; font-size: 18px; flex-shrink: 0;
  }

  /* Toast position */
  #toast-container { bottom: 12px; right: 12px; left: 12px; }
  .toast { min-width: unset; }

  /* Global search */
  #global-search-box { width: 95vw; }

  /* Pagination */
  .search-hint { display: none; }
}

@media (min-width: 769px) {
  .burger-btn { display: none !important; }
  .sidebar-overlay { display: none !important; }
}
