/* === Shadcn/ui Theme === */
:root, [data-theme="dark"] {
  --background: #09090b;
  --foreground: #fafafa;
  --card: #09090b;
  --card-foreground: #fafafa;
  --popover: #09090b;
  --popover-foreground: #fafafa;
  --primary: #fafafa;
  --primary-foreground: #18181b;
  --secondary: #27272a;
  --secondary-foreground: #fafafa;
  --muted: #27272a;
  --muted-foreground: #a1a1aa;
  --accent: #27272a;
  --accent-foreground: #fafafa;
  --destructive: #7f1d1d;
  --destructive-foreground: #fafafa;
  --border: #27272a;
  --input: #27272a;
  --ring: #d4d4d8;
  --sidebar-background: #111113;
  --sidebar-foreground: #a1a1aa;
  --sidebar-primary: #fafafa;
  --sidebar-primary-foreground: #18181b;
  --sidebar-accent: #1c1c1f;
  --sidebar-accent-foreground: #fafafa;
  --sidebar-border: #1e1e21;
  --sidebar-ring: #d4d4d8;
  --sidebar-width: 240px;
  --sidebar-collapsed-width: 56px;
  --radius: 0.5rem;
  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --scrollbar-thumb: #333;
  --scrollbar-track: transparent;
  color-scheme: dark;
}

[data-theme="light"] {
  --background: #ffffff;
  --foreground: #09090b;
  --card: #ffffff;
  --card-foreground: #09090b;
  --popover: #ffffff;
  --popover-foreground: #09090b;
  --primary: #18181b;
  --primary-foreground: #fafafa;
  --secondary: #f4f4f5;
  --secondary-foreground: #18181b;
  --muted: #f4f4f5;
  --muted-foreground: #71717a;
  --accent: #f4f4f5;
  --accent-foreground: #18181b;
  --destructive: #ef4444;
  --destructive-foreground: #fafafa;
  --border: #e4e4e7;
  --input: #e4e4e7;
  --ring: #a1a1aa;
  --sidebar-background: #fafafa;
  --sidebar-foreground: #71717a;
  --sidebar-primary: #18181b;
  --sidebar-primary-foreground: #fafafa;
  --sidebar-accent: #f4f4f5;
  --sidebar-accent-foreground: #18181b;
  --sidebar-border: #e4e4e7;
  --sidebar-ring: #a1a1aa;
  --scrollbar-thumb: #c4c4c4;
  --scrollbar-track: transparent;
  color-scheme: light;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
body {
  font-family: var(--font);
  background: var(--background);
  color: var(--foreground);
  font-size: 14px;
  display: flex;
  height: 100vh;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
}

/* === Sidebar === */
.sidebar {
  width: var(--sidebar-width);
  min-width: var(--sidebar-width);
  background: var(--sidebar-background);
  border-right: 1px solid var(--sidebar-border);
  display: flex;
  flex-direction: column;
  height: 100vh;
  overflow: hidden;
  position: relative;
  z-index: 20;
}
.sidebar.animate { transition: width 0.2s ease, min-width 0.2s ease; }
.sidebar.collapsed {
  width: var(--sidebar-collapsed-width);
  min-width: var(--sidebar-collapsed-width);
}
.sidebar.hidden {
  width: 0;
  min-width: 0;
  border-right: none;
  overflow: hidden;
}
.sidebar.collapsed .sidebar-label,
.sidebar.collapsed .sidebar-section-title,
.sidebar.collapsed .sidebar-scroll .sidebar-section:not(.sidebar-section-nav),
.sidebar.collapsed .sidebar-footer { display: none; }

/* Brand */
.sidebar-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--sidebar-border);
  min-height: 48px;
}
.sidebar-brand .brand-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  overflow: hidden;
}
.sidebar-brand .brand-text {
  font-size: 16px;
  font-weight: 600;
  color: var(--foreground);
  letter-spacing: -0.3px;
  white-space: nowrap;
  overflow: hidden;
}
.sidebar.collapsed .brand-text { display: none; }
.sidebar.collapsed .sidebar-brand { justify-content: center; }
.sidebar.collapsed .sidebar-brand .brand-logo svg { display: none; }
.sidebar.collapsed .burger-btn { display: flex; }
.burger-btn {
  background: none;
  border: none;
  color: var(--sidebar-foreground);
  cursor: pointer;
  padding: 4px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.15s, color 0.15s;
}
.burger-btn:hover { background: var(--sidebar-accent); color: var(--foreground); }

/* Sidebar resize handle */
.sidebar-resize {
  position: absolute;
  top: 0;
  right: -3px;
  width: 6px;
  height: 100%;
  cursor: col-resize;
  z-index: 25;
}
.sidebar-resize:hover,
.sidebar-resize.active {
  background: var(--ring);
  opacity: 0.3;
}

/* Floating burger when sidebar hidden */
.burger-float {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 30;
  background: var(--sidebar-background);
  border: 1px solid var(--sidebar-border);
  border-radius: 8px;
  padding: 6px;
  display: none;
}
.sidebar.hidden ~ .main .burger-float,
body.sidebar-hidden .burger-float { display: flex; }

/* Navigation */
.sidebar-nav, .sidebar-section-nav {
  padding: 6px 8px;
  border-bottom: 1px solid var(--sidebar-border);
}
.nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--sidebar-foreground);
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
}
.nav-item:hover { background: var(--sidebar-accent); color: var(--sidebar-accent-foreground); }
.nav-item.active { background: var(--sidebar-accent); color: var(--sidebar-accent-foreground); font-weight: 500; }
.nav-item svg { width: 20px; height: 20px; flex-shrink: 0; opacity: 0.7; }
.nav-item.active svg { opacity: 1; }
.sidebar.collapsed .nav-item { justify-content: center; padding: 10px; }
.sidebar.collapsed .nav-item .sidebar-label { display: none; }

/* Scrollable sidebar content */
.sidebar-scroll {
  flex: 1;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
}
.sidebar-scroll::-webkit-scrollbar { width: 4px; }
.sidebar-scroll::-webkit-scrollbar-track { background: transparent; }
.sidebar-scroll::-webkit-scrollbar-thumb { background: var(--scrollbar-thumb); border-radius: 4px; }

/* Sidebar sections */
.sidebar-section {
  padding: 12px 16px;
  border-bottom: 1px solid var(--sidebar-border);
}
.sidebar-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  color: var(--muted-foreground);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  font-weight: 500;
  padding: 0 4px;
}

/* List tabs */
.list-tabs { display: flex; flex-direction: column; gap: 1px; }
.list-tab {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 13px;
  color: var(--sidebar-foreground);
  border: none;
  background: none;
  text-align: left;
  transition: all 0.15s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.list-tab:hover { background: var(--sidebar-accent); color: var(--sidebar-accent-foreground); }
.list-tab.active { background: var(--sidebar-accent); color: var(--sidebar-accent-foreground); font-weight: 500; }
.list-tab .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--muted-foreground);
  flex-shrink: 0;
}
.list-tab.active .dot { background: #3b82f6; }
.list-tab .tab-name { flex: 1; overflow: hidden; text-overflow: ellipsis; }
.list-tab .tab-count {
  font-size: 11px;
  color: var(--muted-foreground);
  background: var(--secondary);
  padding: 1px 6px;
  border-radius: 8px;
  flex-shrink: 0;
}

/* === Form Controls === */
.input {
  display: flex;
  height: 32px;
  width: 100%;
  border-radius: calc(var(--radius) - 2px);
  border: 1px solid var(--input);
  background: transparent;
  padding: 4px 10px;
  font-size: 13px;
  color: var(--foreground);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.input::placeholder { color: var(--muted-foreground); }
.input:focus { border-color: var(--ring); box-shadow: 0 0 0 2px rgba(212,212,216,0.1); }
.input-muted {
  border-color: transparent; background: var(--secondary); color: var(--muted-foreground);
  font-size: 12px; height: 28px; color-scheme: dark;
}
.input-muted:focus { border-color: var(--ring); color: var(--foreground); }
.input-muted::-webkit-calendar-picker-indicator { filter: invert(0.5); cursor: pointer; }
.input-row { display: flex; gap: 6px; align-items: center; margin-bottom: 6px; }
.input-row label { font-size: 12px; color: var(--muted-foreground); white-space: nowrap; min-width: 32px; }
.input-row .input { flex: 1; }

.checkbox-row {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--sidebar-foreground);
  cursor: pointer; margin-top: 6px; padding: 4px 0;
}
.checkbox-row input[type="checkbox"] {
  appearance: none; -webkit-appearance: none;
  width: 16px; height: 16px;
  border: 1px solid var(--input); border-radius: 4px;
  background: transparent; cursor: pointer;
  position: relative; flex-shrink: 0;
  transition: background 0.15s, border-color 0.15s;
}
.checkbox-row input[type="checkbox"]:checked { background: var(--foreground); border-color: var(--foreground); }
.checkbox-row input[type="checkbox"]:checked::after {
  content: ''; position: absolute; left: 4.5px; top: 1.5px;
  width: 5px; height: 9px;
  border: solid var(--background); border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* Slider */
.slider-container { padding: 4px 0; }
.slider {
  -webkit-appearance: none; width: 100%; height: 6px;
  border-radius: 3px; background: var(--secondary); outline: none; cursor: pointer;
}
.slider::-webkit-slider-thumb {
  -webkit-appearance: none; width: 16px; height: 16px; border-radius: 50%;
  background: var(--foreground); cursor: pointer;
  border: 2px solid var(--background); box-shadow: 0 0 0 1px var(--border);
}

/* === Buttons === */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  white-space: nowrap; border-radius: calc(var(--radius) - 2px);
  font-size: 13px; font-weight: 500; cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s, opacity 0.15s;
  outline: none; border: none; height: 32px; padding: 0 14px;
}
.btn:focus-visible { box-shadow: 0 0 0 2px rgba(212,212,216,0.2); }
.btn:disabled { opacity: 0.5; pointer-events: none; }
.btn-default { background: var(--primary); color: var(--primary-foreground); }
.btn-default:hover { opacity: 0.9; }
.btn-secondary { background: var(--secondary); color: var(--secondary-foreground); }
.btn-secondary:hover { background: #303033; }
.btn-destructive { background: var(--destructive); color: var(--destructive-foreground); }
.btn-destructive:hover { opacity: 0.9; }
.btn-outline { background: transparent; border: 1px solid var(--input); color: var(--foreground); }
.btn-outline:hover { background: var(--accent); color: var(--accent-foreground); }
.btn-ghost { background: transparent; color: var(--muted-foreground); }
.btn-ghost:hover { background: var(--accent); color: var(--accent-foreground); }
.btn-ghost.active { background: var(--accent); color: var(--accent-foreground); }
.btn-sm { height: 28px; padding: 0 10px; font-size: 12px; border-radius: calc(var(--radius) - 4px); }
.btn-icon { height: 32px; width: 32px; padding: 0; }
.btn-icon-sm { height: 28px; width: 28px; padding: 0; font-size: 12px; }
.btn-block { width: 100%; }

/* Sync */
.sync-row { display: flex; gap: 6px; margin-bottom: 8px; }
.progress-bar { width: 100%; height: 6px; background: var(--secondary); border-radius: 3px; overflow: hidden; margin-top: 8px; }
.progress-bar-fill { height: 100%; background: #3b82f6; border-radius: 3px; transition: width 0.3s ease; }
.sync-text { font-size: 12px; color: var(--muted-foreground); margin-top: 4px; }

/* Toggle */
.toggle-row { display: flex; align-items: center; justify-content: space-between; font-size: 13px; color: var(--sidebar-foreground); padding: 2px 0; }
.toggle { position: relative; display: inline-block; width: 36px; height: 20px; }
.toggle input { opacity: 0; width: 0; height: 0; }
.toggle .sl { position: absolute; cursor: pointer; inset: 0; background: var(--input); border-radius: 20px; transition: background 0.2s; }
.toggle .sl:before { content: ""; position: absolute; height: 16px; width: 16px; left: 2px; bottom: 2px; background: var(--foreground); border-radius: 50%; transition: transform 0.2s; }
.toggle input:checked + .sl { background: var(--foreground); }
.toggle input:checked + .sl:before { transform: translateX(16px); background: var(--background); }

/* === Content Area (wraps main + panels) === */
.content-area {
  flex: 1; display: flex; flex-direction: column; overflow: hidden;
}
.content-row {
  flex: 1; display: flex; overflow: hidden;
}

/* === Main Content === */
.main {
  flex: 1; display: flex; flex-direction: column;
  overflow: hidden; background: var(--background);
  position: relative;
}

/* Video Grid */
.video-grid {
  display: flex; flex-wrap: wrap; gap: 16px; padding: 20px;
  overflow-y: auto; flex: 1; align-content: flex-start;
  scrollbar-width: thin; scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
}
.video-grid::-webkit-scrollbar { width: 6px; }
.video-grid::-webkit-scrollbar-track { background: transparent; }
.video-grid::-webkit-scrollbar-thumb { background: var(--scrollbar-thumb); border-radius: 4px; }

/* === Video Card === */
.video-card {
  border-radius: var(--radius); overflow: hidden;
  background: var(--card); border: 1px solid var(--border);
  transition: border-color 0.2s, box-shadow 0.2s;
  cursor: pointer; flex-shrink: 0; position: relative;
}
.video-card:hover { border-color: #3f3f46; box-shadow: 0 2px 8px rgba(0,0,0,0.3); }
.video-card.watched { opacity: 0.35; }
.video-card.watched:hover { opacity: 0.65; }

.thumb-container {
  position: relative; width: 100%; padding-top: 56.25%;
  background: #18181b; overflow: hidden;
}
.thumb-container img {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform 0.2s;
}
.video-card:hover .thumb-container img { transform: scale(1.03); }
.thumb-container iframe {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none;
}
.duration-badge {
  position: absolute; bottom: 6px; right: 6px;
  background: rgba(0,0,0,0.85); color: #fff;
  padding: 2px 6px; border-radius: 4px;
  font-size: 11px; font-weight: 500; letter-spacing: 0.3px;
}

/* Queue button on card */
.queue-btn {
  position: absolute; top: 6px; right: 6px;
  background: rgba(0,0,0,0.75); color: #fff;
  border: none; border-radius: 4px; padding: 4px 6px;
  cursor: pointer; font-size: 11px;
  opacity: 0; transition: opacity 0.15s;
  display: flex; align-items: center; gap: 3px;
  z-index: 3;
}
.video-card:hover .queue-btn { opacity: 1; }
.queue-btn:hover { background: rgba(0,0,0,0.95); }

.video-info { padding: 8px 10px 6px; }
.video-date {
  font-size: 11px; color: var(--muted-foreground);
  margin-bottom: 3px; cursor: default;
}
.video-title {
  font-size: 13px; font-weight: 500; line-height: 1.35;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden; color: var(--foreground);
  text-decoration: none; margin-bottom: 3px;
}
.video-title:hover { color: #3b82f6; }
.video-meta {
  font-size: 11px; color: var(--muted-foreground);
  display: flex; justify-content: space-between; align-items: center;
}
.video-actions { margin-top: 4px; display: flex; align-items: center; gap: 4px; }
.watch-btn {
  background: none; border: none; cursor: pointer;
  color: var(--muted-foreground); padding: 2px;
  opacity: 0.4; transition: opacity 0.15s, color 0.15s;
  display: flex; align-items: center; justify-content: center;
}
.watch-btn:hover { opacity: 1; color: var(--foreground); }
.watch-btn.is-watched { opacity: 0.7; color: #3b82f6; }
.watch-btn.is-watched:hover { opacity: 1; }
/* Playlist button */
.playlist-btn {
  background: none; border: none; cursor: pointer;
  color: var(--muted-foreground); padding: 2px;
  opacity: 0.4; transition: opacity 0.15s;
  display: flex; align-items: center; justify-content: center;
}
.playlist-btn:hover { opacity: 1; color: #3b82f6; }
/* Not interested button */
.hide-action-btn {
  background: none; border: none; cursor: pointer;
  color: var(--muted-foreground); padding: 2px;
  opacity: 0.4; transition: opacity 0.15s, color 0.15s;
  display: flex; align-items: center; justify-content: center;
}
.hide-action-btn:hover { opacity: 1; color: #ef4444; }
.hide-action-btn.is-hidden { opacity: 0.7; color: #ef4444; }
.hide-action-btn.is-hidden:hover { opacity: 1; }
.hide-btn {
  position: absolute; top: 6px; left: 6px; z-index: 3;
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(0,0,0,0.7); color: #fff;
  border: none; cursor: pointer;
  font-size: 14px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.15s;
}
.video-card:hover .hide-btn { opacity: 1; }
.hide-btn:hover { background: #ef4444; }
.video-card.hidden-card .hide-btn { opacity: 1; background: rgba(59,130,246,0.8); }
.video-card.hidden-card .hide-btn:hover { background: #3b82f6; }
.video-card.hidden-card { opacity: 0.25; }
.video-card.hidden-card:hover { opacity: 0.5; }

/* Compact mode */
.video-card[data-compact="true"] .video-info { display: none; }
.video-card[data-compact="true"] { border-radius: calc(var(--radius) - 2px); }
/* Queue btn stays visible even in compact — shrink it */
.video-card[data-compact="true"] .queue-btn { padding: 2px 3px; font-size: 0; gap: 0; }
.video-card[data-compact="true"] .queue-btn svg { width: 10px; height: 10px; }
.video-card[data-compact="true"] .hide-btn { width: 16px; height: 16px; font-size: 10px; top: 3px; left: 3px; }

/* Load more button in grid */
.grid-load-more {
  width: 100%; padding: 12px;
  border: 1px dashed var(--border); border-radius: var(--radius);
  background: transparent; color: var(--muted-foreground);
  cursor: pointer; font-size: 13px; transition: all 0.15s;
  flex-basis: 100%;
}
.grid-load-more:hover { background: var(--accent); color: var(--accent-foreground); border-style: solid; }

/* Pagination */
.pagination {
  display: flex; justify-content: center; gap: 4px;
  padding: 12px 16px; border-top: 1px solid var(--border); background: var(--background);
}

/* Empty state */
.empty-state {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 60px 20px; color: var(--muted-foreground); text-align: center; gap: 8px;
}
.empty-state svg { opacity: 0.3; margin-bottom: 8px; }

/* === Queue / Mini Player === */
.queue-player {
  position: fixed; bottom: 16px; right: 16px;
  width: 400px; z-index: 100;
  background: var(--sidebar-background);
  border: 1px solid var(--sidebar-border);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  overflow: hidden;
  display: none;
  flex-direction: column;
}
.queue-player.active { display: flex; }
.focus-panel.open ~ .queue-player,
.content-row:has(.focus-panel.open) ~ .queue-player { right: calc(320px + 16px); }
.queue-player-video {
  position: relative; width: 100%; padding-top: 56.25%;
  background: #000;
}
.queue-player-video iframe {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none;
}
.queue-player-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 12px; gap: 8px;
}
.queue-player-title {
  font-size: 12px; font-weight: 500; color: var(--foreground);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap; flex: 1;
}
.queue-player-controls { display: flex; gap: 4px; }
.queue-player-controls button {
  background: none; border: none; color: var(--muted-foreground);
  cursor: pointer; padding: 4px; border-radius: 4px; display: flex;
  align-items: center; justify-content: center;
  transition: background 0.15s, color 0.15s;
}
.queue-player-controls button:hover { background: var(--accent); color: var(--foreground); }
.queue-list {
  max-height: 200px; overflow-y: auto; border-top: 1px solid var(--sidebar-border);
  scrollbar-width: thin; scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
}
.queue-list::-webkit-scrollbar { width: 4px; }
.queue-list::-webkit-scrollbar-thumb { background: var(--scrollbar-thumb); border-radius: 4px; }
.queue-item {
  display: flex; align-items: center; gap: 8px;
  padding: 6px 12px; font-size: 12px; color: var(--muted-foreground);
  cursor: pointer; transition: background 0.15s;
}
.queue-item:hover { background: var(--sidebar-accent); color: var(--foreground); }
.queue-item.playing { color: #3b82f6; }
.queue-item-thumb {
  width: 48px; height: 27px; border-radius: 3px; object-fit: cover; flex-shrink: 0;
}
.queue-item-title { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.queue-item-remove {
  background: none; border: none; color: var(--muted-foreground);
  cursor: pointer; font-size: 14px; padding: 0 2px; opacity: 0;
  transition: opacity 0.15s;
}
.queue-item:hover .queue-item-remove { opacity: 1; }

/* Resize handles for queue player */
.queue-resize-top {
  position: absolute; top: -3px; left: 0; width: 100%; height: 6px;
  cursor: n-resize; z-index: 5;
}
.queue-resize-left {
  position: absolute; top: 0; left: -3px; width: 6px; height: 100%;
  cursor: w-resize; z-index: 5;
}
.queue-resize-corner {
  position: absolute; top: -4px; left: -4px; width: 12px; height: 12px;
  cursor: nw-resize; z-index: 6;
}
.queue-resize-top:hover, .queue-resize-left:hover, .queue-resize-corner:hover,
.queue-resize-top.active, .queue-resize-left.active, .queue-resize-corner.active {
  background: var(--ring); opacity: 0.3;
}
/* Minimized queue */
.queue-player.minimized .queue-player-video,
.queue-player.minimized .queue-list { display: none; }
.queue-player.minimized { width: auto; min-width: 240px; }
/* Hidden queue: offscreen but iframe stays alive for audio */
.queue-player.queue-hidden {
  transform: translateX(calc(100% + 32px));
  pointer-events: none; opacity: 0;
  transition: transform 0.3s ease, opacity 0.2s ease;
}
.queue-player.queue-hidden .queue-player-bar {
  pointer-events: auto; opacity: 1;
  position: fixed; bottom: 16px; right: 16px;
  background: var(--sidebar-background); border: 1px solid var(--sidebar-border);
  border-radius: 8px; padding: 6px 12px; z-index: 101;
  transform: none; box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}
.queue-player-controls button.active { color: #3b82f6; }

/* === Settings Modal === */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.6);
  z-index: 200; display: none; align-items: center; justify-content: center;
}
.modal-overlay.active { display: flex; }
.modal {
  background: var(--sidebar-background);
  border: 1px solid var(--sidebar-border);
  border-radius: 12px;
  padding: 24px;
  width: 380px;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}
.modal h2 {
  font-size: 16px; font-weight: 600; margin-bottom: 16px;
  color: var(--foreground);
}
.modal-field { margin-bottom: 12px; }
.modal-field label {
  display: block; font-size: 12px; color: var(--muted-foreground);
  margin-bottom: 4px;
}
.modal-field select {
  width: 100%; height: 32px;
  border-radius: calc(var(--radius) - 2px);
  border: 1px solid var(--input);
  background: var(--background); color: var(--foreground);
  padding: 4px 10px; font-size: 13px; outline: none;
  cursor: pointer;
}
.modal-field select:focus { border-color: var(--ring); }
.modal-actions { display: flex; gap: 8px; justify-content: flex-end; margin-top: 16px; }

/* Sidebar footer */
.sidebar-footer {
  padding: 8px;
  border-top: 1px solid var(--sidebar-border);
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sidebar.collapsed .sidebar-footer { display: none; }
.sidebar-user {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 4px 6px; gap: 6px;
}
.sidebar-user-email {
  font-size: 11px; color: var(--muted-foreground);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap; flex: 1;
}
.sidebar-user-badge {
  font-size: 10px; font-weight: 600; letter-spacing: 0.5px;
  padding: 1px 6px; border-radius: 6px;
  background: var(--secondary); color: var(--muted-foreground);
  flex-shrink: 0;
}
.sidebar-user-badge.patron { background: #7c3aed; color: #fff; }
.sidebar-user-badge.premium { background: #d97706; color: #fff; }
.sidebar-footer-row { display: flex; gap: 4px; }

/* === Columns View === */
.columns-container {
  display: flex; gap: 0; flex: 1; overflow-x: auto;
  scrollbar-width: thin; scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
}
.columns-container::-webkit-scrollbar { height: 6px; }
.columns-container::-webkit-scrollbar-track { background: transparent; }
.columns-container::-webkit-scrollbar-thumb { background: var(--scrollbar-thumb); border-radius: 4px; }
.column {
  min-width: 300px; flex: 0 0 300px;
  display: flex; flex-direction: column;
  border-right: 1px solid var(--border); height: 100%;
}
.column-header {
  font-size: 13px; font-weight: 600; padding: 12px 14px;
  border-bottom: 1px solid var(--border); background: var(--sidebar-background);
  display: flex; justify-content: space-between; align-items: center;
  position: sticky; top: 0; z-index: 2; color: var(--foreground);
}
.column-header .count-badge {
  font-size: 11px; font-weight: 400; color: var(--muted-foreground);
  background: var(--secondary); padding: 2px 8px; border-radius: 10px;
}
.column-scroll {
  flex: 1; overflow-y: auto; padding: 10px;
  display: flex; flex-direction: column; gap: 10px;
  scrollbar-width: thin; scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
}
.column-scroll::-webkit-scrollbar { width: 4px; }
.column-scroll::-webkit-scrollbar-track { background: transparent; }
.column-scroll::-webkit-scrollbar-thumb { background: var(--scrollbar-thumb); border-radius: 4px; }
.load-more-btn {
  width: 100%; padding: 10px;
  border: 1px dashed var(--border); border-radius: calc(var(--radius) - 2px);
  background: transparent; color: var(--muted-foreground);
  cursor: pointer; font-size: 12px; margin-top: 4px; transition: all 0.15s;
}
.load-more-btn:hover { background: var(--accent); color: var(--accent-foreground); border-style: solid; }

/* Tooltip */
[data-tooltip] { position: relative; }
[data-tooltip]:hover::after {
  content: attr(data-tooltip);
  position: absolute; bottom: 100%; left: 0;
  background: #18181b; color: var(--foreground);
  font-size: 11px; padding: 4px 8px; border-radius: 4px;
  white-space: nowrap; z-index: 50;
  border: 1px solid var(--border);
  margin-bottom: 4px;
  pointer-events: none;
}

/* === Paywall === */
.paywall-overlay {
  position: absolute; inset: 0; z-index: 10;
  display: flex; align-items: center; justify-content: center;
  background: rgba(9,9,11,0.7); backdrop-filter: blur(2px);
}
.paywall-content {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; color: var(--foreground); padding: 32px;
}
.paywall-column {
  min-width: 300px; flex: 1;
  display: flex; align-items: center; justify-content: center;
  border-right: 1px solid var(--border);
  background: rgba(9,9,11,0.5);
  color: var(--foreground);
}
[data-theme="light"] .paywall-overlay { background: rgba(255,255,255,0.7); }
[data-theme="light"] .paywall-column { background: rgba(255,255,255,0.5); }

/* Playlist scroll */
.playlist-scroll {
  display: flex; flex-direction: column; gap: 4px;
  max-height: 300px; overflow-y: auto; overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
}
.playlist-scroll::-webkit-scrollbar { width: 4px; }
.playlist-scroll::-webkit-scrollbar-track { background: var(--scrollbar-track); }
.playlist-scroll::-webkit-scrollbar-thumb { background: var(--scrollbar-thumb); border-radius: 4px; }

/* Theme toggle */
.theme-toggle {
  background: none; border: none; cursor: pointer;
  color: var(--muted-foreground); padding: 4px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 6px; transition: background 0.15s, color 0.15s;
}
.theme-toggle:hover { background: var(--accent); color: var(--foreground); }

/* === Focus Panel (Right) === */
.focus-panel {
  width: 0; min-width: 0; max-width: 0; overflow: hidden;
  background: var(--sidebar-background);
  border-left: none;
  display: flex; flex-direction: column;
  transition: width 0.25s ease, min-width 0.25s ease, max-width 0.25s ease, border 0.25s ease;
  position: relative;
}
.focus-panel.open {
  width: 320px; min-width: 20px; max-width: none;
  border-left: 1px solid var(--sidebar-border);
  overflow: visible;
}
.focus-resize {
  position: absolute; top: 0; left: -3px;
  width: 6px; height: 100%;
  cursor: col-resize; z-index: 25;
}
.focus-resize:hover, .focus-resize.active { background: var(--ring); opacity: 0.3; }
.focus-header {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 12px; border-bottom: 1px solid var(--sidebar-border);
  min-height: 44px; flex-shrink: 0;
}
.focus-title { font-size: 14px; font-weight: 600; flex: 1; color: var(--foreground); }
.focus-count {
  font-size: 11px; background: var(--secondary);
  padding: 1px 6px; border-radius: 8px; color: var(--muted-foreground);
}
.focus-cards {
  flex: 1; overflow-y: auto; overflow-x: hidden; padding: 8px;
  display: flex; flex-wrap: wrap; gap: 8px; align-content: flex-start;
  scrollbar-width: thin;
  scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
}
.focus-cards::-webkit-scrollbar { width: 4px; }
.focus-cards::-webkit-scrollbar-track { background: var(--scrollbar-track); }
.focus-cards::-webkit-scrollbar-thumb { background: var(--scrollbar-thumb); border-radius: 4px; }
/* Focus view mode buttons */
.focus-view-modes { display: flex; gap: 2px; }
.focus-view-btn {
  background: none; border: 1px solid transparent; cursor: pointer;
  color: var(--muted-foreground); padding: 3px;
  border-radius: 4px; display: flex; align-items: center;
  transition: all 0.15s;
}
.focus-view-btn:hover { color: var(--foreground); background: var(--accent); }
.focus-view-btn.active { color: var(--foreground); border-color: var(--input); background: var(--secondary); }

/* Focus card base */
.focus-card {
  border-radius: var(--radius); border: 1px solid var(--border);
  background: var(--card); cursor: grab;
  transition: opacity 0.2s, border-color 0.2s; position: relative;
}
.focus-card:active { cursor: grabbing; }
.focus-card.watched { opacity: 0.4; }
.focus-card.watched:hover { opacity: 0.7; }
.focus-card:hover { border-color: #3f3f46; }
.focus-card.pinned { border-color: #f59e0b; }
.focus-card-dragging { opacity: 0.3; }
.focus-drag-over { border-top: 2px solid #3b82f6 !important; }

/* Pin button */
.focus-pin-btn {
  background: none; border: none; cursor: pointer;
  color: var(--muted-foreground); padding: 2px; opacity: 0.4;
  display: flex; align-items: center; transition: opacity 0.15s, color 0.15s;
}
.focus-pin-btn:hover { opacity: 1; color: #f59e0b; }
.focus-pin-btn.pinned { opacity: 0.8; color: #f59e0b; }

/* Shared focus-card parts */
.focus-card-body {
  flex: 1; min-width: 0; display: flex; flex-direction: column; justify-content: center;
}
.focus-card-title {
  font-size: 12px; font-weight: 500; color: var(--foreground);
  text-decoration: none; line-height: 1.3;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.focus-card-title:hover { color: #3b82f6; }
.focus-card-channel {
  font-size: 10px; color: var(--muted-foreground); margin-top: 2px;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.focus-card-actions {
  display: flex; align-items: center; gap: 2px; margin-top: 4px; flex-wrap: wrap;
}

/* === Horizontal view (focus-h) === */
.focus-h {
  display: flex; gap: 8px; width: 100%; flex-shrink: 0; padding: 6px;
}
.focus-card-thumb {
  width: 80px; min-width: 5px; aspect-ratio: 16/9;
  border-radius: 4px; overflow: hidden; background: #18181b; flex-shrink: 0;
}
.focus-card-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* === Vertical view (focus-v) === */
.focus-v {
  display: flex; flex-direction: column; width: calc(50% - 4px); flex-shrink: 0; overflow: hidden;
}
.focus-card-thumb-v {
  width: 100%; aspect-ratio: 16/9; overflow: hidden; background: #18181b;
}
.focus-card-thumb-v img { width: 100%; height: 100%; object-fit: cover; display: block; }
.focus-v .focus-card-body { padding: 6px 8px 6px; }

/* === Compact/grid view (focus-c) === */
.focus-c {
  width: calc(50% - 4px); flex-shrink: 0; overflow: hidden;
}
.focus-card-thumb-c {
  position: relative; width: 100%; aspect-ratio: 16/9;
  overflow: hidden; background: #18181b;
}
.focus-card-thumb-c img { width: 100%; height: 100%; object-fit: cover; display: block; }
.focus-c-overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,0.85);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 6px; opacity: 0; transition: opacity 0.2s;
}
.focus-c:hover .focus-c-overlay { opacity: 1; }
.focus-c-title {
  font-size: 11px; color: #fff; font-weight: 500;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  margin-bottom: 4px;
}
.focus-c-overlay .focus-card-actions { margin-top: 0; }
.focus-c-overlay .watch-btn,
.focus-c-overlay .hide-action-btn,
.focus-c-overlay .playlist-btn,
.focus-c-overlay .focus-pin-btn { color: #ccc; opacity: 0.7; }
.focus-c-overlay .watch-btn:hover,
.focus-c-overlay .hide-action-btn:hover,
.focus-c-overlay .playlist-btn:hover,
.focus-c-overlay .focus-pin-btn:hover { opacity: 1; }
.focus-c-overlay .watch-btn.is-watched { color: #3b82f6; opacity: 1; }

/* Focus button on video card */
.focus-btn {
  background: none; border: none; cursor: pointer;
  color: var(--muted-foreground); padding: 2px;
  opacity: 0.4; transition: opacity 0.15s, color 0.15s;
  display: flex; align-items: center; justify-content: center;
}
.focus-btn:hover { opacity: 1; color: #f59e0b; }
.focus-btn.is-focused { opacity: 0.7; color: #f59e0b; }

/* Focus toggle button (right edge) */
.focus-toggle-btn {
  position: fixed; right: 12px; top: 50%; transform: translateY(-50%);
  z-index: 30;
  background: var(--sidebar-background);
  border: 1px solid var(--sidebar-border);
  border-radius: 8px;
  padding: 10px 5px; cursor: pointer;
  color: var(--muted-foreground);
  display: flex; align-items: center; justify-content: center;
  transition: right 0.25s ease, color 0.15s, background 0.15s;
}
.focus-toggle-btn:hover { background: var(--sidebar-accent); color: var(--foreground); }
.focus-toggle-btn.active { color: #f59e0b; }

/* === Bottom Panel === */
.bottom-panel {
  height: 0; min-height: 0; overflow: hidden;
  background: var(--sidebar-background);
  border-top: none;
  display: flex; flex-direction: column;
  transition: height 0.25s ease, min-height 0.25s ease, border 0.25s ease;
  position: relative; flex-shrink: 0;
}
.bottom-panel.open {
  height: 180px; min-height: 180px;
  border-top: 1px solid var(--sidebar-border);
}
.bottom-resize {
  position: absolute; top: -3px; left: 0;
  width: 100%; height: 6px;
  cursor: n-resize; z-index: 25;
}
.bottom-resize:hover, .bottom-resize.active { background: var(--ring); opacity: 0.3; }
.bottom-header {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 12px; border-bottom: 1px solid var(--sidebar-border);
  font-size: 13px; font-weight: 600; color: var(--foreground);
  flex-shrink: 0;
}
.bottom-header #bottomTitle { flex: 1; }
.bottom-playlists {
  flex: 1; overflow-x: auto; overflow-y: hidden;
  display: flex; gap: 10px; padding: 10px 12px;
  align-items: flex-start;
  scrollbar-width: thin;
  scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
}
.bottom-playlists::-webkit-scrollbar { height: 4px; }
.bottom-playlists::-webkit-scrollbar-track { background: var(--scrollbar-track); }
.bottom-playlists::-webkit-scrollbar-thumb { background: var(--scrollbar-thumb); border-radius: 4px; }

/* Playlist card in bottom panel */
.playlist-card {
  flex: 0 0 160px; background: var(--card);
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.playlist-card:hover { border-color: #3f3f46; box-shadow: 0 2px 8px rgba(0,0,0,0.3); }
.playlist-card-thumb {
  width: 100%; aspect-ratio: 16/9; object-fit: cover; background: #18181b; display: block;
}
.playlist-card-info { padding: 6px 8px; }
.playlist-card-title {
  font-size: 11px; font-weight: 500; color: var(--foreground);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.playlist-card-count { font-size: 10px; color: var(--muted-foreground); }
.playlist-card-queue {
  width: 100%; margin-top: 4px; padding: 3px 0;
  background: none; border: 1px solid var(--input); border-radius: 4px;
  color: var(--muted-foreground); font-size: 10px; cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.playlist-card-queue:hover { background: var(--accent); color: var(--foreground); }
.playlist-card-pin {
  padding: 3px 5px; background: none; border: 1px solid var(--input);
  border-radius: 4px; color: var(--muted-foreground); cursor: pointer;
  display: flex; align-items: center; transition: color 0.15s, background 0.15s;
}
.playlist-card-pin:hover { background: var(--accent); color: var(--foreground); }
.playlist-card-pin.pinned { color: #f59e0b; border-color: #f59e0b; }
.playlist-pinned { border-color: #f59e0b; }

/* Playlist row (horizontal view) */
.playlist-row {
  display: flex; align-items: center; gap: 8px;
  padding: 4px 8px; border-radius: var(--radius);
  border: 1px solid var(--border); background: var(--card);
  transition: border-color 0.2s; white-space: nowrap; cursor: pointer;
}
.playlist-row:hover { border-color: #3f3f46; }
.playlist-row-thumb {
  width: 48px; height: 27px; border-radius: 3px;
  object-fit: cover; background: #18181b; flex-shrink: 0;
}
.playlist-row-info { min-width: 0; flex: 1; }
.playlist-row-info .playlist-card-title {
  font-size: 12px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.playlist-row-info .playlist-card-count { font-size: 10px; }

/* Playlist mini (compact view) */
.playlist-mini {
  position: relative; flex: 0 0 80px; cursor: pointer;
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); transition: border-color 0.2s;
}
.playlist-mini:hover { border-color: #3f3f46; }
.playlist-mini img {
  width: 100%; aspect-ratio: 1; object-fit: cover; display: block; background: #18181b;
}
.playlist-mini-pin {
  position: absolute; top: 2px; right: 2px;
}

/* Panel size slider bar */
.panel-size-bar {
  display: flex; align-items: center; gap: 4px;
  padding: 4px 12px; border-bottom: 1px solid var(--sidebar-border);
}
.panel-slider {
  -webkit-appearance: none; height: 4px; flex: 1;
  border-radius: 2px; background: var(--secondary); outline: none; cursor: pointer;
}
.panel-slider::-webkit-slider-thumb {
  -webkit-appearance: none; width: 12px; height: 12px; border-radius: 50%;
  background: var(--foreground); cursor: pointer;
  border: 2px solid var(--background); box-shadow: 0 0 0 1px var(--border);
}

/* Bottom view buttons reuse focus-view-btn style */
.bottom-view-btn {
  background: none; border: 1px solid transparent; cursor: pointer;
  color: var(--muted-foreground); padding: 3px;
  border-radius: 4px; display: flex; align-items: center;
  transition: all 0.15s;
}
.bottom-view-btn:hover { color: var(--foreground); background: var(--accent); }
.bottom-view-btn.active { color: var(--foreground); border-color: var(--input); background: var(--secondary); }

/* Bottom playlists wrap for different views */
.bottom-playlists[data-view="horizontal"] {
  flex-wrap: wrap; overflow-y: auto; overflow-x: hidden;
}
.bottom-playlists[data-view="compact"] {
  flex-wrap: wrap; overflow-y: auto; overflow-x: hidden; gap: 6px;
}
.bottom-playlists[data-view="playlist-videos"] {
  flex-wrap: nowrap; overflow-x: auto; overflow-y: hidden; gap: 10px;
}
.bottom-playlists[data-view="playlist-videos"] .bottom-video-card {
  min-width: 0; flex-shrink: 0;
}
.bottom-playlists[data-view="playlist-videos"] .bottom-video-card .video-info {
  padding: 4px 6px 6px;
}
.bottom-playlists[data-view="playlist-videos"] .bottom-video-card .video-title {
  font-size: 11px; line-height: 1.3;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.bottom-playlists[data-view="playlist-videos"] .bottom-video-card .video-actions {
  margin-top: 4px;
}
.bottom-back-btn { gap: 4px; }
.bottom-back-btn svg { flex-shrink: 0; }

/* Bottom toggle button (bottom center) */
.bottom-toggle-btn {
  position: fixed; bottom: 12px; left: 50%; transform: translateX(-50%);
  z-index: 30;
  background: var(--sidebar-background);
  border: 1px solid var(--sidebar-border);
  border-radius: 8px;
  padding: 4px 14px; cursor: pointer;
  color: var(--muted-foreground);
  display: flex; align-items: center; justify-content: center;
  transition: bottom 0.25s ease, color 0.15s, background 0.15s;
}
.bottom-toggle-btn:hover { background: var(--sidebar-accent); color: var(--foreground); }
.bottom-toggle-btn.active { color: #3b82f6; }

/* === Touch device adaptations === */
.touch-device .sidebar-resize,
.touch-device .focus-resize,
.touch-device .bottom-resize { min-height: 12px; height: 12px; }
.touch-device .focus-resize { width: 12px; left: -6px; }
.touch-device .sidebar-resize { width: 12px; right: -6px; }
.touch-device .queue-resize-top { height: 12px; top: -6px; }
.touch-device .queue-resize-left { width: 12px; left: -6px; }
.touch-device .queue-resize-corner { width: 18px; height: 18px; top: -8px; left: -8px; }
.touch-device .hide-btn,
.touch-device .queue-btn { opacity: 1; }
.touch-device .video-actions button { min-width: 36px; min-height: 36px; }
.touch-device .queue-player-controls button { min-width: 36px; min-height: 36px; }
.touch-device .bottom-view-btn,
.touch-device .focus-view-btn { min-width: 32px; min-height: 32px; padding: 6px; }

/* === Sidebar overlay (mobile) === */
.sidebar-backdrop {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5);
  z-index: 99;
}
.sidebar-backdrop.visible { display: block; }

/* === Mobile === */
@media (max-width: 768px) {
  body { overflow: hidden; }

  /* Sidebar becomes fixed overlay */
  .sidebar {
    position: fixed; left: 0; top: 0; z-index: 100;
    height: 100vh; width: 280px; min-width: 280px;
    transform: translateX(-100%);
    transition: transform 0.25s ease;
  }
  .sidebar.animate { transition: transform 0.25s ease, width 0s, min-width 0s; }
  .sidebar.mobile-open { transform: translateX(0); }
  .sidebar.collapsed { transform: translateX(-100%); width: 280px; min-width: 280px; }
  .sidebar.collapsed .sidebar-label,
  .sidebar.collapsed .sidebar-section-title,
  .sidebar.collapsed .sidebar-scroll .sidebar-section:not(.sidebar-section-nav),
  .sidebar.collapsed .sidebar-footer { display: block; }
  .sidebar.hidden { transform: translateX(-100%); width: 280px; min-width: 280px; border-right: 1px solid var(--sidebar-border); overflow: hidden; }

  /* Floating burger always visible on mobile */
  .burger-float { display: flex !important; }
  .sidebar.mobile-open ~ .main .burger-float,
  body.mobile-sidebar-open .burger-float { display: none !important; }

  .sidebar-resize { display: none; }

  /* Content takes full width */
  .content-area { width: 100%; }
  .content-row { flex-direction: column; }

  /* Video grid single column */
  .video-grid { padding: 12px; gap: 12px; }
  .video-grid .video-card { width: 100% !important; max-width: 100% !important; flex: none !important; }

  /* Columns view stacked */
  .columns-container { flex-direction: column; overflow-x: hidden; overflow-y: auto; }
  .column { min-width: 100%; flex: none; width: 100%; border-right: none; border-bottom: 1px solid var(--border); height: auto; max-height: 60vh; }

  /* Queue player full width */
  .queue-player { width: calc(100% - 16px); left: 8px; right: 8px; bottom: 8px; }
  .queue-player.minimized { min-width: auto; }

  /* Modals near-full-screen */
  .modal { width: calc(100% - 24px); max-height: 90vh; border-radius: 12px; }

  /* Hide panels and their toggle buttons on mobile */
  .focus-panel, .bottom-panel, .focus-toggle-btn, .bottom-toggle-btn { display: none !important; }

  /* Pagination */
  .pagination { padding: 8px 12px; }
}
