:root {
  --primary: #0F3D34;
  --primary-light: #1A594D;
  --accent: #E06D44;
  --accent-hover: #C85A32;
  --bg-app: #F4F3EF;
  --surface: #FFFFFF;
  --surface-subtle: #FAF9F6;
  --text-main: #141716;
  --text-muted: #666E6A;
  --text-inverse: #FFFFFF;
  --border: #E0DCD3;
  --border-focus: #0F3D34;
  --ring: rgba(15, 61, 52, 0.15);

  --status-assigned: #2563EB;
  --status-assigned-bg: #EFF6FF;
  --status-arrived: #D97706;
  --status-arrived-bg: #FFFBEB;
  --status-seated: #15803D;
  --status-seated-bg: #F0FDF4;
  --status-declined: #DC2626;
  --status-declined-bg: #FEF2F2;

  --grid-line: #E2DDD5;
  --grid-major: #CFC9BE;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.07);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.12);
}

* { box-sizing: border-box; margin: 0; padding: 0; -webkit-font-smoothing: antialiased; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg-app);
  color: var(--text-main);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* TOP APP NAVIGATION BAR */
.shell-nav {
  background: #0D1614;
  color: var(--text-inverse);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  height: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
  z-index: 100;
  gap: 16px;
}
.brand-cluster { display: flex; align-items: center; gap: 8px; font-weight: 800; font-size: 0.95rem; letter-spacing: 0.02em; white-space: nowrap; }
.brand-badge { background: var(--accent); color: white; padding: 2px 7px; border-radius: 4px; font-size: 0.68rem; font-weight: 800; }

/* Global Event Switcher in Header */
.event-switcher-cluster {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.07);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.15);
}
.event-switcher-label { font-size: 0.68rem; font-weight: 700; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.05em; white-space: nowrap; }
.event-switcher-select {
  background: transparent;
  border: none;
  color: #FFFFFF;
  font-size: 0.82rem;
  font-weight: 700;
  outline: none;
  cursor: pointer;
  max-width: 200px;
}
.event-switcher-select option { background: #1C2422; color: #FFF; }

.nav-tabs { display: flex; height: 100%; gap: 4px; }
.nav-tab-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.65);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0 14px;
  height: 100%;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-bottom: 3px solid transparent;
  transition: all 0.15s ease;
  white-space: nowrap;
}
.nav-tab-btn:hover { color: #FFF; background: rgba(255,255,255,0.04); }
.nav-tab-btn.active { color: #FFF; border-bottom-color: var(--accent); background: rgba(255,255,255,0.08); font-weight: 700; }

.db-file-controls { display: flex; align-items: center; gap: 8px; white-space: nowrap; }
.venue-setup-menu { position: relative; }
.venue-setup-dropdown { position: absolute; top: calc(100% + 6px); right: 0; background: var(--surface); border: 1px solid var(--border); border-radius: 8px; box-shadow: var(--shadow-md); padding: 6px; display: flex; flex-direction: column; gap: 3px; min-width: 220px; z-index: 50; }
.venue-setup-dropdown[hidden] { display: none; }
.venue-setup-dropdown button { background: none; border: none; text-align: left; padding: 8px 12px; border-radius: 6px; cursor: pointer; font-size: 0.82rem; font-weight: 600; color: var(--text-main); }
.venue-setup-dropdown button:hover { background: var(--surface-subtle); color: var(--primary); }

.btn-db-file {
  background: rgba(255,255,255,0.08);
  color: white;
  border: 1px solid rgba(255,255,255,0.2);
  font-size: 0.74rem;
  padding: 6px 11px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.btn-db-file:hover { background: rgba(255,255,255,0.16); border-color: rgba(255,255,255,0.35); }

/* CONTEXT SUB-TOOLBAR (ACTIVE EVENT & ROOM SELECTOR) */
.venue-picker-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #13221E;
  color: white;
  padding: 8px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
  flex-wrap: wrap;
  gap: 12px;
}
.venue-picker-left { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.venue-picker-group { display: flex; align-items: center; gap: 6px; }
.venue-picker-label { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: rgba(255,255,255,0.5); margin-right: 2px; }
.room-pill-btn, .floor-tab-btn {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.85);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.room-pill-btn:hover, .floor-tab-btn:hover { background: rgba(255,255,255,0.16); color: #FFF; }
.room-pill-btn.active { background: var(--primary-light); border-color: #38A169; color: white; }
.floor-tab-btn.active { background: var(--accent); border-color: var(--accent); color: white; }

.btn-create-pill {
  background: rgba(255,255,255,0.12);
  border: 1px dashed rgba(255,255,255,0.3);
  color: #FFF;
  font-size: 0.72rem;
  padding: 3px 8px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 700;
}
.btn-create-pill:hover { background: rgba(255,255,255,0.25); }

.status-dot { width: 7px; height: 7px; border-radius: 50%; display: inline-block; }
.dot-vacant { background: #22C55E; }
.dot-booked { background: #3B82F6; }
.dot-split { background: #F59E0B; }

.view-viewport { flex: 1; display: flex; flex-direction: column; overflow: hidden; position: relative; }

/* BUTTONS & COMMON CONTROLS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: inherit;
  font-size: 0.84rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.15s ease;
  background: var(--primary);
  color: white;
}
.btn:hover { background: var(--primary-light); }
.btn:active { transform: scale(0.98); }
.btn-sm { padding: 5px 10px; font-size: 0.78rem; }
.btn-secondary { background: var(--surface); color: var(--text-main); border-color: var(--border); }
.btn-secondary:hover { background: var(--surface-subtle); border-color: #CDC8BF; }
.btn-danger { background: var(--status-declined); color: white; }
.btn-danger:hover { background: #B91C1C; }
.btn-accent { background: var(--accent); color: white; }
.btn-accent:hover { background: var(--accent-hover); }

.badge-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 12px;
}
.badge-assigned { background: var(--status-assigned-bg); color: var(--status-assigned); }
.badge-arrived { background: var(--status-arrived-bg); color: var(--status-arrived); }
.badge-seated { background: var(--status-seated-bg); color: var(--status-seated); }
.badge-declined { background: var(--status-declined-bg); color: var(--status-declined); }

/* EVENT DIRECTORY & COCKPIT VIEWS */
.container-page { flex: 1; overflow-y: auto; padding: 28px 36px; max-width: 1280px; width: 100%; margin: 0 auto; }
.page-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; gap: 16px; flex-wrap: wrap; }
.page-title-group h1 { font-size: 1.45rem; font-weight: 800; color: var(--primary); }
.page-title-group p { font-size: 0.84rem; color: var(--text-muted); margin-top: 3px; }

.events-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 18px; margin-bottom: 30px; }
.event-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  transition: all 0.18s ease;
}
.event-card:hover { border-color: var(--primary-light); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.event-card.active-event-card { border: 2px solid var(--accent); background: #FAF9F6; }
.event-card-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; margin-bottom: 12px; }
.event-card-title { font-size: 1.05rem; font-weight: 700; color: var(--primary); line-height: 1.3; }
.event-badge-active { background: var(--accent); color: white; font-size: 0.68rem; font-weight: 800; padding: 2px 6px; border-radius: 4px; text-transform: uppercase; }
.event-card-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin: 14px 0; background: var(--surface-subtle); padding: 10px; border-radius: 6px; text-align: center; }
.stat-mini-val { font-size: 1.25rem; font-weight: 800; color: var(--text-main); }
.stat-mini-lbl { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; color: var(--text-muted); }

.kpi-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 24px; }
.kpi-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 18px 20px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 4px; }
.kpi-val { font-size: 2.1rem; font-weight: 800; color: var(--primary); line-height: 1.1; }
.kpi-lbl { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; color: var(--text-muted); }

.table-box { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); margin-bottom: 24px; }
.table-box-header { padding: 14px 18px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; background: var(--surface-subtle); }
.table-toolbar { padding: 12px 18px; border-bottom: 1px solid var(--border); display: flex; gap: 14px; align-items: center; background: var(--surface-subtle); }
.search-input { flex: 1; max-width: 360px; padding: 8px 12px; border-radius: var(--radius-sm); border: 1px solid var(--border); font-size: 0.85rem; outline: none; }
.search-input:focus { border-color: var(--border-focus); box-shadow: 0 0 0 3px var(--ring); }
table.concierge-table { width: 100%; border-collapse: collapse; text-align: left; font-size: 0.85rem; }
table.concierge-table th { background: #FAF9F6; padding: 12px 18px; font-weight: 700; font-size: 0.72rem; text-transform: uppercase; color: var(--text-muted); border-bottom: 1px solid var(--border); }
table.concierge-table td { padding: 12px 18px; border-bottom: 1px solid var(--border); vertical-align: middle; }
table.concierge-table tr:hover td { background: rgba(0,0,0,0.015); }

/* CAD BLUEPRINT DESIGNER */
.designer-shell { display: flex; flex: 1; height: 100%; min-height: 0; overflow: hidden; }
.sidebar-deck { width: 320px; height: 100%; min-height: 0; background: var(--surface); border-right: 1px solid var(--border); display: flex; flex-direction: column; flex-shrink: 0; z-index: 20; box-shadow: var(--shadow-sm); overflow: hidden; }
.sidebar-pane-header { padding: 14px 16px; border-bottom: 1px solid var(--border); background: var(--surface-subtle); flex-shrink: 0; }
.sidebar-scroll { flex: 1; min-height: 0; overflow-y: auto; padding: 14px 16px; display: flex; flex-direction: column; gap: 16px; }

.visual-prefab-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  max-height: 320px;
  overflow-y: auto;
  padding-right: 4px;
  overscroll-behavior: contain;
}

.section-label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted); margin-bottom: 8px; }

.airwall-ctrl-card { background: var(--surface-subtle); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 12px; display: flex; flex-direction: column; gap: 8px; }
.airwall-active-pill { display: inline-flex; align-items: center; gap: 6px; font-size: 0.72rem; font-weight: 700; color: var(--accent); background: rgba(224, 109, 68, 0.12); padding: 4px 8px; border-radius: 6px; }

.palette-search-box { margin-bottom: 10px; position: relative; }
.palette-search-input { width: 100%; padding: 7px 10px 7px 28px; border: 1px solid var(--border); border-radius: var(--radius-sm); font-size: 0.82rem; outline: none; }
.palette-search-input:focus { border-color: var(--primary); }
.search-icon { position: absolute; left: 9px; top: 8px; font-size: 0.75rem; color: var(--text-muted); }

.category-pills { display: flex; gap: 4px; overflow-x: auto; padding-bottom: 6px; margin-bottom: 8px; }
.category-pill-btn { background: var(--surface-subtle); border: 1px solid var(--border); border-radius: 12px; padding: 3px 8px; font-size: 0.7rem; font-weight: 600; cursor: pointer; white-space: nowrap; color: var(--text-muted); }
.category-pill-btn.active { background: var(--primary); color: white; border-color: var(--primary); }

.visual-prefab-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.visual-prefab-card { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 10px 6px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); cursor: pointer; transition: all 0.15s ease; user-select: none; }
.visual-prefab-card:hover { border-color: var(--primary); background: rgba(15, 61, 52, 0.04); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.prefab-thumb-wrap { width: 66px; height: 66px; border-radius: var(--radius-sm); background: #FAF8F5; border: 1px solid #E6E1D8; display: flex; align-items: center; justify-content: center; margin-bottom: 6px; }
.prefab-thumb-wrap svg { width: 54px; height: 54px; }
.prefab-card-name { font-size: 0.74rem; font-weight: 700; color: var(--text-main); text-align: center; line-height: 1.2; width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.prefab-card-meta { font-size: 0.68rem; color: var(--text-muted); text-align: center; margin-top: 2px; }

.canvas-stage-wrapper { display: flex; flex-direction: column; flex: 1; overflow: hidden; }
.canvas-context-bar { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 8px 14px; background: var(--surface); border-bottom: 1px solid var(--border); font-size: 0.8rem; flex-shrink: 0; }
.canvas-context-crumb { color: var(--text-muted); }
.canvas-context-editing { font-weight: 800; color: var(--primary); }
.canvas-context-foreign-note { font-size: 0.72rem; color: var(--text-muted); display: flex; align-items: center; gap: 6px; }
.foreign-swatch { width: 10px; height: 10px; border-radius: 2px; background: #8A8F8C; display: inline-block; }

.canvas-stage { flex: 1; position: relative; background: #E8E5DF; overflow: auto; display: flex; padding: 24px 50px 50px; }
.blueprint-outer-assembly { margin: 0 auto; position: relative; display: flex; flex-direction: column; gap: 8px; flex-shrink: 0; }
.ruler-top-bar { display: flex; align-items: center; justify-content: center; gap: 12px; height: 24px; padding-left: 36px; }
.ruler-wire-h { flex: 1; height: 1px; background: #0F3D34; position: relative; }
.ruler-wire-h::before { content: "◀"; position: absolute; left: 0; top: -7px; font-size: 8px; color: #0F3D34; }
.ruler-wire-h::after { content: "▶"; position: absolute; right: 0; top: -7px; font-size: 8px; color: #0F3D34; }
.ruler-tag-h { background: #FAF8F5; border: 1px solid var(--border); padding: 2px 8px; border-radius: 4px; font-size: 0.76rem; font-weight: 800; color: var(--primary); white-space: nowrap; }

.canvas-middle-row { display: flex; align-items: stretch; gap: 8px; }
.ruler-left-bar { width: 28px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; }
.ruler-wire-v { width: 1px; flex: 1; background: #0F3D34; position: relative; }
.ruler-wire-v::before { content: "▲"; position: absolute; top: 0; left: -4px; font-size: 8px; color: #0F3D34; }
.ruler-wire-v::after { content: "▼"; position: absolute; bottom: 0; left: -4px; font-size: 8px; color: #0F3D34; }
.ruler-tag-v { background: #FAF8F5; border: 1px solid var(--border); padding: 4px 2px; border-radius: 4px; font-size: 0.74rem; font-weight: 800; color: var(--primary); writing-mode: vertical-rl; transform: rotate(180deg); white-space: nowrap; }

.blueprint-wrapper { position: relative; display: inline-block; }
.floating-controls { position: absolute; top: 20px; left: 20px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 6px; display: flex; align-items: center; gap: 6px; box-shadow: var(--shadow-md); z-index: 30; }
.control-toggle { background: none; border: 1px solid transparent; border-radius: var(--radius-sm); padding: 6px 12px; font-size: 0.8rem; font-weight: 600; cursor: pointer; color: var(--text-main); }
.control-toggle:hover { background: var(--surface-subtle); }
.control-toggle.active { background: rgba(15, 61, 52, 0.08); border-color: var(--primary); color: var(--primary); }

.blueprint-svg { background: #FFFFFF; border-radius: 4px; box-shadow: 0 10px 36px rgba(0,0,0,0.12); border: 2px solid #0F3D34; user-select: none; touch-action: none; display: block; overflow: visible; }
.blueprint-svg.mode-drawing { cursor: crosshair !important; }
.blueprint-svg.mode-pencil { cursor: crosshair !important; }
.blueprint-svg.mode-assigning .chair-group { cursor: pointer !important; }
.blueprint-svg.dragging { cursor: grabbing !important; }

.foreign-zone-entity { opacity: 0.4; filter: grayscale(70%); pointer-events: none; }
.foreign-zone-tag-bg { fill: rgba(20, 23, 22, 0.85); }
.foreign-zone-tag { fill: #FFFFFF; font-size: 10px; font-weight: 700; pointer-events: none; }

.chair-group { cursor: default; }
.chair-group.can-drag-chair { cursor: grab; }
.chair-node-inactive circle.chair-seat { fill: #FEE2E2 !important; stroke: #DC2626 !important; }
.chair-node-inactive text.chair-lbl { fill: #DC2626 !important; font-weight: 800 !important; }
.chair-x-btn { cursor: pointer; }
.chair-x-btn:hover circle { fill: #B91C1C !important; }
.vertex-joint { cursor: move; transition: r 0.15s ease; }
.vertex-joint:hover { r: 9 !important; fill: #E06D44 !important; }
.cad-rotate-handle { cursor: grab; }
.cad-rotate-handle circle { fill: #FFFFFF; stroke: #0F3D34; stroke-width: 2; }
.cad-rotate-handle:hover circle { fill: #E06D44; }
.room-resize-handle { fill: #FFFFFF; stroke: #0F3D34; stroke-width: 2.5; }
.room-resize-handle:hover { fill: #E06D44; }
.handle-n, .handle-s { cursor: ns-resize; } .handle-e, .handle-w { cursor: ew-resize; }
.handle-nw, .handle-se { cursor: nwse-resize; } .handle-ne, .handle-sw { cursor: nesw-resize; }

/* FLOOR STITCHER */
.stitcher-shell { flex: 1; display: flex; flex-direction: column; overflow: hidden; background: #ECE8E1; position: relative; }
.stitcher-toolbar { background: #FFFFFF; border-bottom: 1px solid var(--border); padding: 10px 20px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.stitcher-stage { flex: 1; overflow: auto; padding: 50px; position: relative; user-select: none; }
.floor-stitch-canvas { min-width: 2200px; min-height: 1400px; position: relative; background: #FAF8F5; border: 2px dashed #CFC9BE; border-radius: 8px; }
.stitched-room-block { position: absolute; background: #FFFFFF; border: 2px solid var(--primary); border-radius: 6px; box-shadow: var(--shadow-md); cursor: move; display: flex; flex-direction: column; overflow: hidden; }
.stitched-room-block:hover { border-color: var(--accent); box-shadow: var(--shadow-lg); }
.stitched-room-header { background: var(--primary); color: white; padding: 6px 10px; font-size: 0.78rem; font-weight: 700; display: flex; align-items: center; justify-content: space-between; }
.stitched-room-body { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 12px; background: rgba(15, 61, 52, 0.02); text-align: center; }

/* GUEST VIEW PASS */
.guest-frame { flex: 1; overflow-y: auto; padding: 30px 16px; display: flex; flex-direction: column; align-items: center; }
.pass-container { width: 100%; max-width: 440px; background: #FFFFFF; border-radius: var(--radius-lg); border: 1px solid var(--border); box-shadow: var(--shadow-lg); overflow: hidden; display: flex; flex-direction: column; }
.pass-header { background: var(--primary); color: white; padding: 28px 24px 24px; text-align: center; }
.pass-notch-cutout { height: 20px; background: var(--surface); border-top: 1px dashed var(--border); margin: 0 14px; }
.pass-body { padding: 24px; display: flex; flex-direction: column; gap: 18px; }
.seat-showcase { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; background: var(--surface-subtle); padding: 16px; border-radius: var(--radius-md); border: 1px solid var(--border); text-align: center; }
.seat-num-hero { font-size: 2.8rem; font-weight: 800; color: var(--primary); line-height: 1; }

/* TOASTS & MODALS */
.toast-banner { position: fixed; bottom: 24px; right: 24px; background: #1C2422; color: white; padding: 12px 18px; border-radius: var(--radius-md); box-shadow: var(--shadow-lg); font-size: 0.85rem; font-weight: 600; display: flex; align-items: center; gap: 8px; transform: translateY(100px); opacity: 0; transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1); z-index: 2000; pointer-events: none; }
.toast-banner.show { transform: translateY(0); opacity: 1; }
.modal-overlay { position: fixed; inset: 0; background: rgba(14, 20, 18, 0.55); backdrop-filter: blur(2px); display: flex; align-items: center; justify-content: center; z-index: 1000; }
.modal-window { background: var(--surface); border-radius: var(--radius-lg); width: 480px; max-width: 95vw; padding: 24px; box-shadow: var(--shadow-lg); display: flex; flex-direction: column; gap: 14px; }
.form-row { display: flex; flex-direction: column; gap: 6px; }
.form-row label { font-size: 0.76rem; font-weight: 700; text-transform: uppercase; color: var(--text-muted); }
.form-input { padding: 9px 12px; border: 1px solid var(--border); border-radius: var(--radius-sm); font-size: 0.9rem; font-family: inherit; }
.form-input:focus { border-color: var(--border-focus); outline: none; box-shadow: 0 0 0 3px var(--ring); }
/* VENUE CREATOR DROPDOWN MENU */
.venue-creator-menu { position: relative; display: flex; align-items: center; height: 100%; }
.venue-creator-dropdown { position: absolute; top: calc(100% + 4px); left: 0; background: var(--surface); border: 1px solid var(--border); border-radius: 8px; box-shadow: var(--shadow-md); padding: 6px; display: flex; flex-direction: column; gap: 3px; min-width: 220px; z-index: 150; }
.venue-creator-dropdown[hidden] { display: none; }
.venue-creator-dropdown button { background: none; border: none; text-align: left; padding: 8px 12px; border-radius: 6px; cursor: pointer; font-size: 0.82rem; font-weight: 600; color: var(--text-main); }
.venue-creator-dropdown button:hover { background: var(--surface-subtle); color: var(--primary); }
.dropdown-divider { height: 1px; background: var(--border); margin: 4px 0; }