/* ========================================
   BLUE JAY ENTERTAINMENT - Dashboard Styles

   Color system using CSS custom properties for theme switching.
   Default: Dark mode

   Dark mode palette:
   - Background:  #0f1419 (dark navy)
   - Sidebar:     #1a2332 (slightly lighter navy)
   - Cards:       #1e2d3d (card backgrounds)
   - Accent:      #4da6ff (blue jay blue)
   - Accent 2:    #00c9a7 (teal for success/positive)
   - Text:        #e8edf2 (light gray)
   - Text dim:    #8899aa (muted)
   - Border:      #2a3a4a (subtle borders)
   - Danger:      #ff6b6b (red for warnings)
   - Warning:     #ffc857 (yellow for attention)
   ======================================== */

/* --- CSS Variables for Theme System --- */
:root {
  /* Dark mode (default) */
  --bg-main: #0f1419;
  --bg-sidebar: #1a2332;
  --bg-card: #1e2d3d;
  --bg-input: #0f1419;
  --bg-input-alt: #1e2d3d;
  --bg-hover: #243344;
  --bg-border-subtle: #1a2332;

  --text-primary: #e8edf2;
  --text-secondary: #8899aa;
  --text-tertiary: #556677;
  --text-quaternary: #445566;

  --border-main: #2a3a4a;

  --accent-blue: #4da6ff;
  --accent-blue-hover: #6bb8ff;
  --accent-teal: #00c9a7;
  --accent-danger: #ff6b6b;
  --accent-warning: #ffc857;
}

/* Light mode */
body.light-mode {
  --bg-main: #f5f6f8;
  --bg-sidebar: #ffffff;
  --bg-card: #ffffff;
  --bg-input: #ffffff;
  --bg-input-alt: #f5f6f8;
  --bg-hover: #f0f1f3;
  --bg-border-subtle: #e5e7eb;

  --text-primary: #1a1a2e;
  --text-secondary: #6b7280;
  --text-tertiary: #9ca3af;
  --text-quaternary: #d1d5db;

  --border-main: #e5e7eb;

  /* Accent colors stay the same */
}

/* --- Reset & Base --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-main);
  color: var(--text-primary);
  display: flex;
  min-height: 100vh;
  overflow: hidden;
  transition: background-color 0.2s ease, color 0.2s ease;
}

/* --- Sidebar --- */
#sidebar {
  width: 220px;
  min-width: 220px;
  background: var(--bg-sidebar);
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--border-main);
  height: 100vh;
  position: sticky;
  top: 0;
}

.sidebar-header {
  padding: 24px 20px 16px;
  border-bottom: 1px solid var(--border-main);
}

.sidebar-header h1 {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent-blue);
  letter-spacing: 0.5px;
}

.sidebar-header .subtitle {
  font-size: 12px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Navigation list */
.nav-list {
  list-style: none;
  padding: 12px 0;
  flex: 1;
}

.nav-item {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  cursor: pointer;
  color: var(--text-secondary);
  font-size: 14px;
  transition: all 0.15s ease;
  border-left: 3px solid transparent;
  position: relative;
}

.nav-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  top: 8px;
  right: 8px;
}
.nav-dot.dot-info { background: var(--accent-blue); }
.nav-dot.dot-warn { background: var(--accent-warning); }

.nav-item:hover {
  background: var(--bg-card);
  color: var(--text-primary);
}

.nav-item.active {
  background: var(--bg-card);
  color: var(--accent-blue);
  border-left-color: var(--accent-blue);
}

.nav-icon {
  font-size: 16px;
  width: 24px;
  text-align: center;
  margin-right: 12px;
}

/* Sidebar toggle button */
#sidebar-toggle {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 20px;
  cursor: pointer;
  padding: 2px 6px;
  border-radius: 4px;
  line-height: 1;
  transition: color 0.15s;
}
#sidebar-toggle:hover { color: var(--text-primary); }

/* Collapsed sidebar — icon-only mode */
#sidebar {
  transition: width 0.2s ease, min-width 0.2s ease;
}
#sidebar.collapsed {
  width: 60px;
  min-width: 60px;
}
#sidebar.collapsed .nav-label,
#sidebar.collapsed .sidebar-header .subtitle,
#sidebar.collapsed .sidebar-footer .version {
  display: none;
}
#sidebar.collapsed .nav-icon { margin-right: 0; }
#sidebar.collapsed .nav-item { justify-content: center; padding: 12px 8px; }
#sidebar.collapsed .sidebar-header { padding: 16px 8px; justify-content: center; }
#sidebar.collapsed .sidebar-header h1 { display: none; }
#sidebar.collapsed .sidebar-footer { justify-content: center; }

/* Portrait orientation: auto-collapse sidebar */
@media (orientation: portrait) {
  #sidebar { width: 60px; min-width: 60px; }
  #sidebar .nav-label,
  #sidebar .sidebar-header .subtitle,
  #sidebar .sidebar-footer .version { display: none; }
  #sidebar .nav-icon { margin-right: 0; }
  #sidebar .nav-item { justify-content: center; padding: 12px 8px; }
  #sidebar .sidebar-header { padding: 16px 8px; justify-content: center; }
  #sidebar .sidebar-header h1 { display: none; }
  #sidebar .sidebar-footer { justify-content: center; }

  /* Reduce page padding, use full width */
  #page-container { padding: 16px; max-width: none; }

  /* Tables: horizontal scroll wrapper */
  .data-table { display: block; overflow-x: auto; white-space: nowrap; }
  .data-table thead, .data-table tbody, .data-table tr { display: table; width: 100%; table-layout: auto; }

  /* Stat cards & quick actions: fewer columns */
  .stats-grid { grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 10px; }
  .quick-actions { grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 10px; }

  /* Budget form: single column */
  .budget-form, .payment-form, .form-row { grid-template-columns: 1fr; }

  /* Artist entry: stack layout */
  .artist-entry { grid-template-columns: 1fr 1fr; }

  /* Tab buttons: scrollable */
  .tab-buttons { overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; }
  .tab-btn { flex-shrink: 0; padding: 10px 14px; font-size: 13px; }

  /* Genre bar labels: narrower */
  .genre-bar .genre-name { width: 80px; font-size: 12px; }

  /* Page header: smaller text */
  .page-header h2 { font-size: 20px; }
}

.sidebar-footer {
  padding: 12px 20px;
  border-top: 1px solid var(--border-main);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.sidebar-footer .version {
  font-size: 11px;
  color: var(--text-tertiary);
}

/* Theme toggle button */
#theme-toggle {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 16px;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: all 0.15s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

#theme-toggle:hover {
  background: var(--bg-card);
  color: var(--accent-blue);
}

/* --- Main Content --- */
#content {
  flex: 1;
  display: flex;
  flex-direction: column;
  height: 100vh;
  overflow: hidden;
}

#top-subtab-bar {
  display: none;
  background: var(--bg-sidebar);
  border-bottom: 1px solid var(--border-main);
  padding: 0 16px;
  gap: 0;
  flex-shrink: 0;
}

.top-subtab-btn {
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s;
}
.top-subtab-btn:hover { color: var(--text-primary); }
.top-subtab-btn.active { color: var(--accent-blue); border-bottom-color: var(--accent-blue); }

#page-container {
  flex: 1;
  overflow-y: auto;
  padding: 32px;
  max-width: 1200px;
}

/* --- Page Headers --- */
.page-header {
  margin-bottom: 28px;
}

.page-header h2 {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.page-header .page-subtitle {
  font-size: 14px;
  color: var(--text-secondary);
}

/* --- Stat Cards (Home page) --- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-main);
  border-radius: 8px;
  padding: 20px;
}

.stat-card .stat-label {
  font-size: 12px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.stat-card .stat-value {
  font-size: 32px;
  font-weight: 700;
  color: var(--accent-blue);
}

.stat-card .stat-detail {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 4px;
}

/* --- Section Cards --- */
.section {
  background: var(--bg-card);
  border: 1px solid var(--border-main);
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 20px;
}

.section h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text-primary);
}

/* --- Tables --- */
.data-table {
  width: 100%;
  border-collapse: collapse;
}

.data-table th {
  text-align: left;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
  padding: 8px 12px;
  border-bottom: 1px solid var(--border-main);
}

.data-table td {
  padding: 10px 12px;
  font-size: 14px;
  border-bottom: 1px solid var(--bg-border-subtle);
}

.data-table tr:hover {
  background: rgba(77, 166, 255, 0.05);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: none;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s ease;
}

.btn-primary {
  background: var(--accent-blue);
  color: var(--bg-main);
}

.btn-primary:hover {
  background: var(--accent-blue-hover);
}

.btn-secondary {
  background: var(--border-main);
  color: var(--text-primary);
}

.btn-secondary:hover {
  background: var(--bg-hover);
}

/* --- Forms --- */
.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 12px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  background: var(--bg-input);
  border: 1px solid var(--border-main);
  border-radius: 6px;
  color: var(--text-primary);
  font-size: 14px;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-blue);
}

.form-group textarea {
  min-height: 80px;
  resize: vertical;
}

/* --- Tags / Badges --- */
.badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-active { background: rgba(0, 201, 167, 0.15); color: var(--accent-teal); }
.badge-paused { background: rgba(255, 200, 87, 0.15); color: var(--accent-warning); }
.badge-warning { background: rgba(255, 107, 107, 0.15); color: var(--accent-danger); }
.badge-info { background: rgba(77, 166, 255, 0.15); color: var(--accent-blue); }

/* --- Quick Action Buttons (Home page) --- */
.quick-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-bottom: 32px;
}

.quick-action {
  background: var(--bg-card);
  border: 1px solid var(--border-main);
  border-radius: 8px;
  padding: 16px;
  cursor: pointer;
  transition: all 0.15s ease;
  text-align: center;
}

.quick-action:hover {
  border-color: var(--accent-blue);
  background: var(--bg-hover);
}

.quick-action .qa-icon {
  font-size: 24px;
  margin-bottom: 8px;
}

.quick-action .qa-label {
  font-size: 13px;
  color: var(--text-primary);
}

/* --- Iframe container (for embedded tools like Card Generator) --- */
.tool-embed {
  width: 100%;
  height: calc(100vh - 100px);
  border: none;
  border-radius: 8px;
  background: var(--bg-card);
}

/* --- Placeholder for pages not yet built --- */
.coming-soon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 60vh;
  color: var(--text-tertiary);
}

.coming-soon .cs-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.coming-soon .cs-text {
  font-size: 18px;
}

.coming-soon .cs-sub {
  font-size: 13px;
  margin-top: 8px;
  color: var(--text-quaternary);
}

/* --- Sortable Table Headers --- */
.sortable {
  cursor: pointer;
  user-select: none;
}

.sortable:hover {
  color: var(--accent-blue);
}

.sort-arrow {
  font-size: 10px;
  color: var(--accent-blue);
}

/* --- Genre Autocomplete Dropdown --- */
.genre-option {
  padding: 8px 12px;
  cursor: pointer;
  font-size: 13px;
  color: var(--text-primary);
  border-bottom: 1px solid var(--bg-border-subtle);
}

.genre-option:hover,
.genre-option.highlighted {
  background: var(--bg-card);
  color: var(--accent-blue);
}

.genre-option:last-child {
  border-bottom: none;
}

/* --- Type Column & Badges --- */
.col-type {
  width: 90px;
  min-width: 90px;
  max-width: 90px;
}

.type-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.type-band { background: rgba(77, 166, 255, 0.15); color: var(--accent-blue); }
.type-dj { background: rgba(200, 100, 255, 0.15); color: #c864ff; }
.type-solo { background: rgba(0, 201, 167, 0.15); color: var(--accent-teal); }
.type-visual { background: rgba(255, 200, 87, 0.15); color: var(--accent-warning); }
.type-dance { background: rgba(255, 150, 100, 0.15); color: #ff9664; }
.type-other { background: rgba(136, 153, 170, 0.15); color: var(--text-secondary); }

/* Social link mini-badges in table cells */
.social-link {
  display: inline-block;
  padding: 2px 7px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
  margin-right: 3px;
  transition: opacity 0.15s;
}
.social-link:hover { opacity: 0.75; }
.social-ig { background: rgba(225, 48, 108, 0.15); color: #E1306C; }
.social-fb { background: rgba(91, 141, 239, 0.15); color: #5b8def; }
.social-web { background: rgba(0, 201, 167, 0.12); color: var(--accent-teal); }

/* Separator row between type groups */
.type-separator td {
  height: 12px;
  padding: 0;
  border-bottom: none;
}

.type-separator:hover {
  background: none !important;
}

/* --- Genre bars (stats) --- */
.genre-bar {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.genre-bar .genre-name {
  width: 120px;
  font-size: 13px;
  color: var(--text-secondary);
}

.genre-bar .genre-fill {
  height: 8px;
  background: var(--accent-blue);
  border-radius: 4px;
  margin-right: 8px;
  min-width: 4px;
  transition: width 0.3s ease;
}

.genre-bar .genre-count {
  font-size: 12px;
  color: var(--text-tertiary);
}

/* --- Budget Planner Specific Styles --- */
.budget-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.artist-list {
  margin-top: 16px;
}

.artist-entry {
  background: var(--bg-input);
  border: 1px solid var(--border-main);
  border-radius: 6px;
  padding: 12px;
  margin-bottom: 12px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr auto;
  gap: 12px;
  align-items: center;
}

.artist-entry input,
.artist-entry select {
  padding: 8px 10px;
  background: var(--bg-input-alt);
  border: 1px solid var(--border-main);
  border-radius: 4px;
  color: var(--text-primary);
  font-size: 13px;
}

.artist-entry input:focus,
.artist-entry select:focus {
  outline: none;
  border-color: var(--accent-blue);
}

.btn-icon {
  padding: 6px 12px;
  font-size: 14px;
}

.calculation-section {
  background: var(--bg-sidebar);
  border: 1px solid var(--border-main);
  border-radius: 8px;
  padding: 24px;
  margin-top: 24px;
}

.calc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-main);
  font-size: 14px;
}

.calc-row:last-child {
  border-bottom: none;
}

.calc-row.total {
  font-size: 16px;
  font-weight: 700;
  margin-top: 8px;
  padding-top: 16px;
  border-top: 2px solid var(--accent-blue);
}

.calc-label {
  color: var(--text-secondary);
}

.calc-value {
  font-weight: 600;
  color: var(--text-primary);
}

.calc-value.positive {
  color: var(--accent-teal);
}

.calc-value.negative {
  color: var(--accent-danger);
}

.calc-value.warning {
  color: var(--accent-warning);
}

/* Two-column Expected | Actual values in revenue breakdown */
.calc-values {
  display: flex;
  gap: 0;
}
.calc-val-exp, .calc-val-act {
  font-weight: 600;
  color: var(--text-primary);
  text-align: right;
  min-width: 88px;
}
.calc-val-act {
  color: var(--accent-teal);
  border-left: 1px solid var(--border-main);
  padding-left: 12px;
  margin-left: 12px;
}
.calc-val-act.dim { color: var(--text-tertiary); font-weight: 400; }
.calc-val-act.negative, .calc-val-exp.negative { color: var(--accent-danger); }
.calc-val-act.positive, .calc-val-exp.positive { color: var(--accent-teal); }
.calc-val-act.warning, .calc-val-exp.warning   { color: var(--accent-warning); }

.slider-container {
  margin: 24px 0;
}

.slider-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--text-secondary);
}

.slider-value {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-blue);
}

.attendance-slider {
  width: 100%;
  height: 8px;
  -webkit-appearance: none;
  appearance: none;
  background: var(--border-main);
  border-radius: 4px;
  outline: none;
}

.attendance-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  background: var(--accent-blue);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.15s ease;
}

.attendance-slider::-webkit-slider-thumb:hover {
  background: var(--accent-blue-hover);
  transform: scale(1.2);
}

.attendance-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: var(--accent-blue);
  border-radius: 50%;
  cursor: pointer;
  border: none;
  transition: all 0.15s ease;
}

.attendance-slider::-moz-range-thumb:hover {
  background: var(--accent-blue-hover);
  transform: scale(1.2);
}

.budget-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 24px;
}

.saved-budgets {
  margin-top: 32px;
}

.budget-card {
  background: var(--bg-card);
  border: 1px solid var(--border-main);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.budget-card:hover {
  border-color: var(--accent-blue);
  background: var(--bg-hover);
}

.budget-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.budget-card-title {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 15px;
}

.budget-card-date {
  font-size: 12px;
  color: var(--text-secondary);
}

.budget-card-details {
  font-size: 13px;
  color: var(--text-secondary);
}

.payment-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 20px;
}

.tab-buttons {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border-main);
}

.tab-btn {
  padding: 12px 20px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s ease;
}

.tab-btn:hover {
  color: var(--text-primary);
}

.tab-btn.active {
  color: var(--accent-blue);
  border-bottom-color: var(--accent-blue);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}

.input-with-icon {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-secondary);
  font-size: 14px;
}

.input-with-icon input {
  padding-left: 36px;
}

/* --- VM Expanded Inline Cells --- */
.vm-cell-exp {
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  padding: 4px;
  gap: 0;
}
.vm-exp-event {
  width: 100%;
  padding: 5px 4px;
  border-bottom: 1px solid var(--border-main);
  cursor: pointer;
  border-radius: 3px;
  transition: background 0.1s;
}
.vm-exp-event:hover { background: var(--bg-hover); }
.vm-exp-event:last-child { border-bottom: none; padding-bottom: 0; }
.vm-exp-name {
  font-size: 11px; font-weight: 600;
  color: var(--text-primary); margin-bottom: 2px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.vm-exp-artists { font-size: 10px; color: var(--accent-teal); margin-bottom: 2px; line-height: 1.3; }
.vm-exp-meta { display: flex; flex-wrap: wrap; gap: 3px; font-size: 10px; color: var(--text-tertiary); line-height: 1.4; }
.vm-exp-meta span { white-space: nowrap; }
.vm-exp-link { color: var(--accent-blue); text-decoration: none; font-size: 11px; }
.vm-exp-link:hover { text-decoration: underline; }

/* VM genre autocomplete dropdown */
.vm-genre-dropdown {
  display: none; position: absolute; left: 0; right: 0; top: 100%;
  background: var(--bg-main); border: 1px solid var(--border-main); border-top: none;
  border-radius: 0 0 6px 6px; max-height: 180px; overflow-y: auto; z-index: 200;
}
.vm-genre-option {
  padding: 7px 12px; font-size: 13px; cursor: pointer; color: var(--text-primary);
}
.vm-genre-option:hover, .vm-genre-option.highlighted { background: var(--bg-card); }
.vm-venue-dropdown {
  display: none; position: absolute; left: 0; right: 0; top: 100%;
  background: var(--bg-main); border: 1px solid var(--border-main); border-top: none;
  border-radius: 0 0 6px 6px; max-height: 180px; overflow-y: auto; z-index: 200;
}
.vm-venue-option {
  padding: 7px 12px; font-size: 13px; cursor: pointer; color: var(--text-primary);
  display: flex; align-items: center;
}
.vm-venue-option:hover, .vm-venue-option.highlighted { background: var(--bg-card); }
