/* ForgeTrack — Dashboard Styles */

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

:root {
  --bg-dark: #0f1117;
  --bg-sidebar: #161822;
  --bg-main: #1a1c2e;
  --bg-card: #1e2035;
  --bg-card-hover: #252840;
  --bg-input: #252840;
  --border: #2a2d45;
  --border-light: #353860;
  --text-primary: #e8e9f0;
  --text-secondary: #8b8fa3;
  --text-muted: #5a5e78;
  --accent: #6c5ce7;
  --accent-hover: #7f71ea;
  --accent-glow: rgba(108, 92, 231, 0.15);
  --success: #00c853;
  --warning: #f59e0b;
  --danger: #ef4444;
  --pink: #f43f5e;
  --radius: 10px;
  --radius-sm: 6px;
  --radius-lg: 14px;
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
  font-family: var(--font);
  background: var(--bg-dark);
  color: var(--text-primary);
  height: 100vh;
  overflow: hidden;
}

.hidden { display: none !important; }

/* === AUTH SCREEN === */
.auth-screen {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background: var(--bg-dark);
}

.auth-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  width: 400px;
  max-width: 90vw;
}

.auth-logo {
  text-align: center;
  margin-bottom: 32px;
}

.logo-icon {
  font-size: 36px;
}

.auth-logo h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 8px 0 4px;
  background: linear-gradient(135deg, var(--accent), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.auth-subtitle {
  color: var(--text-secondary);
  font-size: 14px;
}

.auth-error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid var(--danger);
  color: var(--danger);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  margin-bottom: 16px;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
}

input, textarea, select {
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 14px;
  color: var(--text-primary);
  font-family: var(--font);
  outline: none;
  transition: border-color 0.2s;
}

input:focus, textarea:focus, select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

input::placeholder, textarea::placeholder {
  color: var(--text-muted);
}

.auth-switch {
  text-align: center;
  font-size: 13px;
  color: var(--text-secondary);
}

.auth-switch a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

.auth-switch a:hover {
  text-decoration: underline;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 18px;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font);
  cursor: pointer;
  transition: all 0.15s;
}

.btn-primary {
  background: var(--accent);
  color: white;
}

.btn-primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 0 16px var(--accent-glow);
}

.btn-secondary {
  background: var(--bg-input);
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-light);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
}

.btn-ghost:hover {
  color: var(--text-primary);
  background: var(--bg-input);
}

.btn-danger {
  background: rgba(239, 68, 68, 0.1);
  color: var(--danger);
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.btn-danger:hover {
  background: rgba(239, 68, 68, 0.2);
}

.btn-sm {
  padding: 6px 12px;
  font-size: 12px;
}

.btn-full {
  width: 100%;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* === APP LAYOUT === */
.app {
  display: flex;
  height: 100vh;
}

/* === SIDEBAR === */
.sidebar {
  width: 240px;
  min-width: 240px;
  background: var(--bg-sidebar);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  height: 100vh;
}

.sidebar-header {
  padding: 20px 20px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sidebar-title {
  font-size: 18px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.creator-switcher {
  padding: 0 12px 12px;
}

.creator-switcher select {
  width: 100%;
  padding: 8px 12px;
  font-size: 13px;
  background: var(--bg-input);
  cursor: pointer;
}

.sidebar-nav {
  flex: 1;
  padding: 8px 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 450;
  transition: all 0.15s;
}

.nav-item:hover {
  color: var(--text-primary);
  background: var(--bg-card);
}

.nav-item.active {
  color: var(--text-primary);
  background: var(--accent-glow);
  border: 1px solid rgba(108, 92, 231, 0.2);
}

.nav-icon {
  font-size: 16px;
  width: 20px;
  text-align: center;
}

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

.user-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.user-email {
  font-size: 12px;
  color: var(--text-muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 140px;
}

/* === MAIN CONTENT === */
.main-content {
  flex: 1;
  overflow-y: auto;
  background: var(--bg-main);
}

.page {
  padding: 28px 32px;
  min-height: 100vh;
}

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

.page-title {
  font-size: 22px;
  font-weight: 700;
}

.page-subtitle {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 4px;
}

/* === CARDS === */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}

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

.card-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.stat-value {
  font-size: 28px;
  font-weight: 700;
}

.stat-change {
  font-size: 12px;
  margin-top: 4px;
}

.stat-change.positive { color: var(--success); }
.stat-change.negative { color: var(--danger); }

/* === TABLE === */
.table-wrapper {
  overflow-x: auto;
}

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

th {
  text-align: left;
  padding: 10px 14px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  user-select: none;
}

th:hover {
  color: var(--text-secondary);
}

td {
  padding: 12px 14px;
  font-size: 13px;
  border-bottom: 1px solid var(--border);
}

tr:hover td {
  background: var(--bg-card-hover);
}

/* === TAGS === */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 500;
  background: var(--accent-glow);
  color: var(--accent);
  border: 1px solid rgba(108, 92, 231, 0.2);
}

.tag-vip {
  background: rgba(244, 63, 94, 0.1);
  color: var(--pink);
  border-color: rgba(244, 63, 94, 0.2);
}

.tag-success {
  background: rgba(0, 200, 83, 0.1);
  color: var(--success);
  border-color: rgba(0, 200, 83, 0.2);
}

.tag-warning {
  background: rgba(245, 158, 11, 0.1);
  color: var(--warning);
  border-color: rgba(245, 158, 11, 0.2);
}

/* === SCRIPTS === */
.scripts-layout {
  display: flex;
  gap: 20px;
  height: calc(100vh - 120px);
}

.scripts-folders {
  width: 180px;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.folder-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.15s;
}

.folder-item:hover {
  background: var(--bg-card);
  color: var(--text-primary);
}

.folder-item.active {
  background: var(--accent-glow);
  color: var(--text-primary);
}

.folder-count {
  font-size: 11px;
  color: var(--text-muted);
  background: var(--bg-input);
  padding: 2px 7px;
  border-radius: 10px;
}

.scripts-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow-y: auto;
}

.scripts-toolbar {
  display: flex;
  gap: 10px;
}

.scripts-toolbar input {
  flex: 1;
}

.scripts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
}

.script-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  cursor: pointer;
  transition: all 0.15s;
  position: relative;
}

.script-card:hover {
  border-color: var(--border-light);
  background: var(--bg-card-hover);
}

.script-card.pinned {
  border-color: rgba(108, 92, 231, 0.3);
}

.script-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.script-body-preview {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.5;
  max-height: 40px;
  overflow: hidden;
  margin-bottom: 10px;
}

.script-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-muted);
}

.script-shortcut {
  font-family: 'SF Mono', 'Fira Code', monospace;
  background: var(--bg-input);
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 11px;
  color: var(--accent);
}

.script-actions {
  display: flex;
  gap: 4px;
  opacity: 0;
  transition: opacity 0.15s;
}

.script-card:hover .script-actions {
  opacity: 1;
}

.script-action-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px;
  font-size: 14px;
  border-radius: 4px;
}

.script-action-btn:hover {
  color: var(--text-primary);
  background: var(--bg-input);
}

/* === MODAL === */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  backdrop-filter: blur(4px);
}

.modal-content {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  width: 520px;
  max-width: 90vw;
  max-height: 80vh;
  overflow-y: auto;
}

.modal-content.modal-lg {
  width: 680px;
  padding: 32px 36px;
}

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

.modal-title {
  font-size: 18px;
  font-weight: 600;
}

.modal-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 20px;
  cursor: pointer;
  padding: 4px;
}

.modal-close:hover {
  color: var(--text-primary);
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 8px;
}

/* === MASS MESSAGE WIZARD === */
.wizard-steps {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}

.wizard-step {
  flex: 1;
  padding: 12px;
  text-align: center;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  background: var(--bg-input);
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.wizard-step.active {
  background: var(--accent-glow);
  color: var(--accent);
  border-color: rgba(108, 92, 231, 0.3);
}

.wizard-step.done {
  background: rgba(0, 200, 83, 0.1);
  color: var(--success);
  border-color: rgba(0, 200, 83, 0.2);
}

.wizard-content {
  margin-bottom: 24px;
}

.wizard-actions {
  display: flex;
  justify-content: space-between;
}

/* === CONNECT WIZARD HEADER === */
.wizard-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 8px;
}

/* === CONNECT WIZARD STEPPER === */
.connect-stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 40px 32px;
  gap: 0;
}

.connect-stepper-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.connect-stepper-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  border: 2px solid var(--border-light);
  background: var(--bg-card);
  color: var(--text-muted);
  transition: all 0.25s;
}

.connect-stepper-step.active .connect-stepper-circle {
  border-color: #E8453C;
  background: #E8453C;
  color: #fff;
  box-shadow: 0 0 0 4px rgba(232, 69, 60, 0.15);
}

.connect-stepper-step.done .connect-stepper-circle {
  border-color: #22c55e;
  background: #22c55e;
  color: #fff;
}

.connect-stepper-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  transition: color 0.25s;
}

.connect-stepper-step.active .connect-stepper-label {
  color: #E8453C;
}

.connect-stepper-step.done .connect-stepper-label {
  color: #22c55e;
}

.connect-stepper-line {
  flex: 1;
  height: 2px;
  background: var(--border-light);
  min-width: 100px;
  margin: 0 8px;
  margin-bottom: 26px;
  transition: background 0.3s;
}

.connect-stepper-line.done {
  background: #22c55e;
}

/* === MALOUM LOGIN CARD === */
.maloum-login-card {
  background: #f8f9fa;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  padding: 36px 40px;
  text-align: center;
}

.maloum-login-card .maloum-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.maloum-logo-svg {
  width: 56px;
  height: 56px;
}

.maloum-login-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 6px;
}

.maloum-login-card .form-group {
  text-align: left;
  margin-bottom: 16px;
}

.maloum-login-card .form-group label {
  color: #444;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

.maloum-login-card input {
  background: #fff;
  border: 1.5px solid #e0e0e0;
  color: #1a1a1a;
  padding: 12px 16px;
  font-size: 14px;
  border-radius: 10px;
  width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.maloum-login-card input:focus {
  border-color: #E8453C;
  box-shadow: 0 0 0 3px rgba(232, 69, 60, 0.12);
  outline: none;
}

.maloum-login-card input::placeholder {
  color: #bbb;
}

.maloum-login-card .pw-wrapper {
  position: relative;
}

.maloum-login-card .pw-wrapper input {
  padding-right: 46px;
}

.maloum-login-card .pw-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #bbb;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
}

.maloum-login-card .pw-toggle:hover {
  color: #666;
}

/* === CONNECT WIZARD BOTTOM BAR === */
.connect-wizard-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.connect-wizard-footer .footer-right {
  display: flex;
  gap: 10px;
}

/* === TOAST === */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.toast {
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  animation: slideIn 0.2s ease-out;
  min-width: 250px;
}

.toast-success {
  background: rgba(0, 200, 83, 0.15);
  border: 1px solid rgba(0, 200, 83, 0.3);
  color: var(--success);
}

.toast-error {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: var(--danger);
}

.toast-info {
  background: var(--accent-glow);
  border: 1px solid rgba(108, 92, 231, 0.3);
  color: var(--accent);
}

@keyframes slideIn {
  from { transform: translateX(40px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* === LOADING === */
.loading-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.loading-page {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60vh;
  color: var(--text-muted);
  font-size: 14px;
  gap: 12px;
}

.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
}

.empty-state-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.empty-state-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.empty-state-desc {
  font-size: 13px;
  margin-bottom: 20px;
}

/* === FAN DETAIL === */
.fan-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.fan-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 600;
  color: var(--accent);
}

.fan-name {
  font-size: 20px;
  font-weight: 700;
}

.fan-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

/* === SEARCH === */
.search-input {
  position: relative;
}

.search-input input {
  padding-left: 36px;
  width: 100%;
}

.search-input::before {
  content: '🔍';
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  pointer-events: none;
}

/* === VAULT PICKER === */
.vault-picker-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
}

.vault-picker-modal {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  width: 920px;
  max-width: 100%;
  height: 620px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
}

.vault-picker-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.vault-picker-header h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.vault-picker-body {
  display: flex;
  flex: 1;
  overflow: hidden;
}

.vault-picker-folders {
  width: 200px;
  min-width: 200px;
  border-right: 1px solid var(--border);
  overflow-y: auto;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex-shrink: 0;
}

.vault-picker-media {
  flex: 1;
  overflow-y: auto;
  padding: 12px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 8px;
  align-content: start;
}

.vault-picker-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}

.vp-folder-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.15s;
}

.vp-folder-item:hover {
  background: var(--bg-card-hover);
}

.vp-folder-item.active {
  background: var(--accent-glow);
  color: var(--accent);
}

.vp-thumb {
  position: relative;
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-input);
  border: 2px solid transparent;
  transition: border-color 0.15s, transform 0.15s;
}

.vp-thumb:hover {
  border-color: var(--border-light);
  transform: scale(1.02);
}

.vp-thumb.vp-thumb-selected {
  border-color: #E8453C;
  box-shadow: 0 0 0 1px #E8453C;
}

.vp-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vp-video-badge {
  position: absolute;
  bottom: 6px;
  left: 6px;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 4px;
}

.vp-sent-badge {
  position: absolute;
  top: 5px;
  right: 5px;
  background: #7c3aed;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 10px;
  letter-spacing: 0.2px;
  pointer-events: none;
}

/* === SCROLLBAR === */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--border-light);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .sidebar {
    width: 60px;
    min-width: 60px;
  }
  .sidebar-title, .creator-switcher, .user-email, .nav-item span:not(.nav-icon) {
    display: none;
  }
  .nav-item {
    justify-content: center;
    padding: 12px;
  }
  .page {
    padding: 20px 16px;
  }
}
