:root {
  --bg-primary: #0a0d14;
  --bg-secondary: #111622;
  --bg-tertiary: #171f30;
  --bg-card: rgba(22, 29, 46, 0.75);
  --bg-card-hover: rgba(30, 40, 64, 0.9);
  --border-color: rgba(255, 255, 255, 0.08);
  --border-focus: rgba(0, 242, 254, 0.4);
  
  --accent-cyan: #00f2fe;
  --accent-blue: #4facfe;
  --accent-green: #00f5a0;
  --accent-gold: #ffd166;
  --accent-purple: #8b5cf6;
  --accent-rose: #f43f5e;
  
  --text-main: #f1f5f9;
  --text-dim: #94a3b8;
  --text-muted: #64748b;
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  
  --shadow-glow: 0 0 25px rgba(0, 242, 254, 0.15);
  --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font-sans);
  background-color: var(--bg-primary);
  color: var(--text-main);
  line-height: 1.5;
  overflow-x: hidden;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* ========================================================
   TOP GLOBAL NAVIGATION BAR
   ======================================================== */
.top-nav {
  height: 68px;
  background: rgba(10, 13, 20, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 250px;
}

.brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #050b14;
  position: relative;
  box-shadow: 0 0 20px rgba(0, 242, 254, 0.35);
}

.brand-title {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.badge-pro {
  font-size: 9px;
  font-weight: 800;
  background: linear-gradient(90deg, #00f5a0, #00f2fe);
  color: #06111e;
  padding: 2px 6px;
  border-radius: 4px;
  text-transform: uppercase;
}

.brand-subtitle {
  font-size: 11px;
  color: var(--text-dim);
  font-weight: 500;
}

/* Persona Switcher Bar */
.persona-switch-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(23, 31, 48, 0.6);
  padding: 4px;
  border-radius: 14px;
  border: 1px solid var(--border-color);
}

.persona-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: transparent;
  border: none;
  border-radius: 10px;
  color: var(--text-dim);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
  position: relative;
}

.persona-btn:hover {
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.05);
}

.persona-btn.active {
  background: linear-gradient(135deg, rgba(0, 242, 254, 0.15), rgba(79, 172, 254, 0.2));
  color: var(--accent-cyan);
  border: 1px solid rgba(0, 242, 254, 0.3);
  box-shadow: 0 2px 10px rgba(0, 242, 254, 0.1);
}

.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00f5a0;
  box-shadow: 0 0 8px #00f5a0;
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
  0% { transform: scale(0.9); opacity: 0.6; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.6; }
}

.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.operating-hours-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(0, 245, 160, 0.08);
  border: 1px solid rgba(0, 245, 160, 0.25);
  border-radius: var(--radius-full);
  color: #00f5a0;
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font-mono);
}

.pulse-indicator {
  width: 8px;
  height: 8px;
  background-color: #00f5a0;
  border-radius: 50%;
  box-shadow: 0 0 10px #00f5a0;
  animation: pulse-glow 1.5s infinite;
}

.phone-frame-toggle-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  cursor: pointer;
  color: var(--text-dim);
  transition: var(--transition-fast);
}

.phone-frame-toggle-btn:hover {
  color: var(--accent-cyan);
  border-color: var(--accent-cyan);
}

/* ========================================================
   VIEW ENGINE
   ======================================================== */
.app-layout {
  min-height: calc(100vh - 68px);
  position: relative;
}

.app-view {
  display: none;
  animation: fadeIn 0.3s ease;
}

.app-view.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ========================================================
   MOBILE DEVICE SIMULATOR CONTAINER
   ======================================================== */
.mobile-viewport-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 30px 16px;
  min-height: calc(100vh - 68px);
}

.phone-canvas {
  width: 100%;
  max-width: 430px;
  height: 870px;
  background: #0d121c;
  border: 10px solid #1e2638;
  border-radius: 46px;
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.8), 0 0 40px rgba(0, 242, 254, 0.08);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}

.phone-canvas.tg-skin {
  border-color: #17212b;
  background: #0e1621;
}

/* Mobile Status Notch */
.phone-notch-bar {
  height: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 24px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-dim);
  background: transparent;
  position: relative;
  z-index: 10;
}

.notch-speaker {
  width: 80px;
  height: 18px;
  background: #000;
  border-radius: 12px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
}

.notch-icons {
  font-size: 11px;
  font-family: var(--font-mono);
}

/* Mobile App Header */
.mobile-header {
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-color);
  background: rgba(17, 22, 34, 0.6);
}

.owner-profile {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar-ring {
  position: relative;
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, #8b5cf6, #3b82f6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.badge-online {
  width: 10px;
  height: 10px;
  background: #00f5a0;
  border-radius: 50%;
  border: 2px solid #0d121c;
  position: absolute;
  bottom: -2px;
  right: -2px;
}

.greeting {
  font-size: 15px;
  font-weight: 700;
}

.sub-greeting {
  font-size: 11px;
  color: var(--text-dim);
}

.icon-action-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  color: var(--text-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.mobile-scroll-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-scroll-body.p-16 {
  padding: 16px;
}

/* Mobile Tabbar */
.phone-tabbar {
  height: 64px;
  background: rgba(14, 18, 28, 0.95);
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0 10px;
}

.tab-btn {
  background: none;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--text-dim);
  font-size: 10px;
  font-weight: 600;
  cursor: pointer;
}

.tab-btn .ti {
  font-size: 18px;
}

.tab-btn.active {
  color: var(--accent-cyan);
}

/* ========================================================
   OWNER PULSE WIDGETS
   ======================================================== */
.pulse-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.pulse-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pulse-card.highlight {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(0, 242, 254, 0.12), rgba(79, 172, 254, 0.05));
  border-color: rgba(0, 242, 254, 0.35);
}

.pulse-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: var(--text-dim);
  font-weight: 600;
}

.pulse-val {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #fff;
  font-family: var(--font-sans);
}

.pulse-val small {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-dim);
}

.pulse-sub {
  font-size: 10px;
  color: var(--text-dim);
}

.trend-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: var(--radius-full);
}

.trend-badge.pos {
  background: rgba(0, 245, 160, 0.15);
  color: #00f5a0;
}

.pulse-breakdown {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 10px;
  margin-top: 4px;
  padding-top: 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.dot-wash { color: #00f2fe; }
.dot-detail { color: #c084fc; }
.dot-cafe { color: #fbbf24; }

.progress-bar-thin {
  height: 5px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-top: 4px;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #00f5a0, #00f2fe);
}

/* Bay Cards Stack in Mobile */
.section-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 14px;
}

.section-card.dark-gradient {
  background: linear-gradient(145deg, #131b2c, #0d121c);
  border-color: rgba(139, 92, 246, 0.3);
}

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

.card-title {
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}

.badge-live-pulse {
  font-size: 10px;
  font-weight: 700;
  color: #00f5a0;
  background: rgba(0, 245, 160, 0.12);
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

.bay-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bay-live-row {
  display: grid;
  grid-template-columns: 85px 1fr 65px;
  gap: 8px;
  align-items: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  padding: 8px 10px;
}

.bay-num {
  font-size: 10px;
  font-weight: 800;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.tag-wash {
  font-size: 8px;
  color: var(--accent-cyan);
}

.tag-detail {
  font-size: 8px;
  color: #c084fc;
}

.tag-free {
  font-size: 8px;
  color: #00f5a0;
}

.bay-car-info {
  overflow: hidden;
}

.car-plate {
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.service-name {
  font-size: 10px;
  color: var(--text-dim);
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.combo-cafe {
  color: #ffd166;
  font-weight: 600;
}

.bay-timer {
  text-align: right;
  display: flex;
  flex-direction: column;
}

.timer-digits {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-cyan);
}

.timer-sub {
  font-size: 8px;
  color: var(--text-dim);
}

.badge-ready {
  font-size: 9px;
  color: #00f5a0;
  font-weight: 700;
}

/* Action Trigger Card */
.action-trigger-card {
  background: rgba(139, 92, 246, 0.1);
  border: 1px dashed rgba(139, 92, 246, 0.4);
  border-radius: var(--radius-sm);
  padding: 10px;
  margin: 10px 0;
}

.trigger-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
}

.tag-weather {
  font-size: 10px;
  font-weight: 700;
  color: #60a5fa;
}

.trigger-lead {
  font-size: 9px;
  color: var(--text-dim);
}

.trigger-desc {
  font-size: 11px;
  margin-bottom: 8px;
}

.btn-primary-sm {
  background: linear-gradient(135deg, #00f2fe, #4facfe);
  border: none;
  color: #04101e;
  font-weight: 700;
  font-size: 12px;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
}

.btn-primary-sm:hover {
  filter: brightness(1.1);
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.4);
}

.alert-box-warning {
  display: flex;
  gap: 10px;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: var(--radius-sm);
  padding: 10px;
  margin-top: 10px;
}

.alert-icon { font-size: 18px; }

.alert-title {
  font-size: 11px;
  font-weight: 700;
  color: #fbbf24;
}

.alert-text {
  font-size: 10px;
  color: var(--text-dim);
  margin: 3px 0 6px;
}

.btn-outline-xs {
  background: transparent;
  border: 1px solid rgba(245, 158, 11, 0.4);
  color: #fbbf24;
  font-size: 9px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  cursor: pointer;
}

.revenue-split-bar {
  height: 22px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: flex;
  margin: 10px 0;
  font-size: 10px;
  font-weight: 700;
  color: #000;
  line-height: 22px;
  text-align: center;
}

.seg-wash { background: #00f2fe; }
.seg-detail { background: #c084fc; }
.seg-cafe { background: #ffd166; }

.kpi-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.kpi-mini {
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-sm);
  padding: 6px 8px;
  display: flex;
  flex-direction: column;
}

.kpi-lbl {
  font-size: 9px;
  color: var(--text-dim);
}

.kpi-num {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

/* ========================================================
   CLIENT TELEGRAM / LINE MINI-APP
   ======================================================== */
.tg-app-bar {
  height: 48px;
  background: #17212b;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
}

.tg-close-btn {
  background: none;
  border: none;
  color: #6ab2f2;
  font-size: 16px;
  cursor: pointer;
}

.tg-title-center {
  text-align: center;
}

.tg-name {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

.tg-status {
  font-size: 10px;
  color: #00f5a0;
}

.tg-menu-dots {
  color: #6ab2f2;
  font-size: 18px;
  cursor: pointer;
}

.loyalty-card-glass {
  background: linear-gradient(135deg, rgba(79, 172, 254, 0.25), rgba(0, 242, 254, 0.15));
  border: 1px solid rgba(0, 242, 254, 0.35);
  border-radius: var(--radius-md);
  padding: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

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

.loyalty-status-badge {
  font-size: 9px;
  font-weight: 800;
  background: rgba(255, 215, 0, 0.2);
  color: #ffd166;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  display: inline-block;
  margin-bottom: 4px;
}

.loyalty-user-name {
  font-size: 14px;
  font-weight: 700;
}

.loyalty-qr-code {
  color: #00f2fe;
}

.loyalty-points-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 8px;
}

.pts-title {
  font-size: 10px;
  color: var(--text-dim);
}

.pts-val {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  font-family: var(--font-mono);
}

.pts-val small { font-size: 11px; }

.coffee-stamps {
  text-align: right;
}

.stamp-label {
  font-size: 9px;
  color: #ffd166;
  font-weight: 600;
}

.stamp-bubbles {
  display: flex;
  gap: 3px;
  margin-top: 3px;
}

.bubble {
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
}

.bubble.filled {
  background: #ffd166;
  color: #000;
}

.bubble.free-next {
  width: auto;
  padding: 0 6px;
  border-radius: var(--radius-full);
  background: #00f5a0;
  color: #000;
  font-size: 8px;
  font-weight: 800;
}

/* Booking Cards */
.booking-section-card {
  background: rgba(23, 33, 43, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 12px;
}

.booking-section-card.combo-highlight {
  border-color: rgba(255, 209, 102, 0.3);
  background: linear-gradient(135deg, rgba(255, 209, 102, 0.06), rgba(23, 33, 43, 0.8));
}

.step-badge {
  font-size: 9px;
  font-weight: 800;
  color: var(--accent-cyan);
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.combo-badge {
  color: #ffd166;
}

.car-type-selector {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 6px;
}

.car-type-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  padding: 8px 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: var(--text-dim);
  cursor: pointer;
  transition: var(--transition-fast);
}

.car-type-btn.active {
  background: rgba(0, 242, 254, 0.12);
  border-color: var(--accent-cyan);
  color: #fff;
}

.c-icon { font-size: 20px; }
.c-title { font-size: 10px; font-weight: 700; text-align: center; }
.c-sub { font-size: 8px; color: var(--text-muted); }

/* Service Options List */
.service-option-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-item-checkbox {
  display: block;
  cursor: pointer;
}

.service-item-checkbox input {
  display: none;
}

.srv-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  padding: 10px;
  transition: var(--transition-fast);
}

.service-item-checkbox input:checked + .srv-box {
  border-color: var(--accent-cyan);
  background: rgba(0, 242, 254, 0.08);
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.15);
}

.srv-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

.srv-name {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
}

.srv-time {
  font-size: 10px;
  font-family: var(--font-mono);
  color: var(--accent-cyan);
  font-weight: 600;
}

.srv-desc {
  font-size: 10px;
  color: var(--text-dim);
  margin-bottom: 6px;
}

.srv-price {
  font-size: 14px;
  font-weight: 800;
  color: #00f5a0;
  font-family: var(--font-mono);
}

.addons-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-dim);
  margin: 10px 0 6px;
}

.chips-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.chip-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-full);
  color: var(--text-dim);
  font-size: 10px;
  padding: 5px 10px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.chip-btn.active {
  background: rgba(192, 132, 252, 0.2);
  border-color: #c084fc;
  color: #fff;
}

/* Cafe Pre-order Items */
.cafe-preorder-items {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 8px;
}

.cafe-check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  padding: 8px 10px;
  cursor: pointer;
}

.cafe-check-item input {
  accent-color: #ffd166;
  width: 16px;
  height: 16px;
}

.c-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.c-name {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
}

.c-specs {
  font-size: 9px;
  color: var(--text-dim);
}

.c-cost {
  font-size: 12px;
  font-weight: 700;
  color: #ffd166;
  font-family: var(--font-mono);
}

/* 15-Minute Slot Time Grid */
.time-picker-date-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 8px;
}

.date-tab {
  flex: 1;
  padding: 6px 0;
  font-size: 10px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  color: var(--text-dim);
  cursor: pointer;
}

.date-tab.active {
  background: rgba(0, 242, 254, 0.15);
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
}

.slot-instruction {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 9px;
  color: var(--text-dim);
  margin-bottom: 8px;
}

.slot-legend {
  display: flex;
  align-items: center;
  gap: 4px;
}

.leg-free {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: #00f5a0;
}

.leg-busy {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: #f43f5e;
}

.time-slot-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  max-height: 180px;
  overflow-y: auto;
  padding-right: 4px;
}

.time-slot-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 6px 0;
  font-size: 11px;
  font-weight: 700;
  font-family: var(--font-mono);
  color: #fff;
  cursor: pointer;
  transition: var(--transition-fast);
  text-align: center;
}

.time-slot-btn:hover:not(.busy) {
  border-color: var(--accent-cyan);
  background: rgba(0, 242, 254, 0.1);
}

.time-slot-btn.selected {
  background: #00f2fe;
  color: #04101e;
  border-color: #00f2fe;
  box-shadow: 0 0 10px rgba(0, 242, 254, 0.4);
}

.time-slot-btn.busy {
  background: rgba(244, 63, 94, 0.08);
  border-color: rgba(244, 63, 94, 0.2);
  color: #f43f5e;
  text-decoration: line-through;
  cursor: not-allowed;
  opacity: 0.6;
}

/* Client Checkout Bar */
.client-checkout-bar {
  background: #17212b;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 16px;
  position: sticky;
  bottom: 0;
  margin: 0 -16px -16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.co-duration { font-size: 10px; color: var(--text-dim); }
.co-price { font-size: 16px; font-weight: 800; color: #fff; font-family: var(--font-mono); }
.co-cashback { font-size: 9px; color: #00f5a0; font-weight: 600; }

.btn-tg-main {
  background: linear-gradient(135deg, #00f2fe, #4facfe);
  border: none;
  color: #03101d;
  font-weight: 800;
  font-size: 13px;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(0, 242, 254, 0.3);
}

/* ========================================================
   DESKTOP OPS GANTT & BUSINESS MODULES
   ======================================================== */
.desktop-ops-container {
  padding: 24px 30px;
  max-width: 1600px;
  margin: 0 auto;
}

.ops-header-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
}

.ops-title-group h2 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.badge-accent {
  font-size: 11px;
  color: var(--accent-cyan);
  font-weight: 600;
  margin-top: 2px;
}

.ops-action-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-outline-sm {
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-main);
  font-size: 12px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-outline-sm:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
}

.day-picker-group {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-tertiary);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  font-size: 12px;
  font-weight: 600;
}

.btn-arrow {
  background: none;
  border: none;
  color: var(--text-dim);
  cursor: pointer;
}

/* Gantt Chart */
.gantt-scrollable-container {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow-x: auto;
  box-shadow: var(--shadow-card);
}

.gantt-time-header {
  display: flex;
  border-bottom: 1px solid var(--border-color);
  background: rgba(17, 22, 34, 0.95);
  position: sticky;
  top: 0;
  z-index: 5;
  min-width: 2200px;
}

.gantt-bay-header-cell {
  width: 180px;
  min-width: 180px;
  padding: 12px 16px;
  font-size: 11px;
  font-weight: 800;
  color: var(--text-dim);
  border-right: 1px solid var(--border-color);
  background: var(--bg-tertiary);
  position: sticky;
  left: 0;
  z-index: 6;
}

.gantt-time-tick {
  width: 45px;
  min-width: 45px;
  text-align: center;
  padding: 10px 0;
  font-size: 10px;
  font-family: var(--font-mono);
  color: var(--text-dim);
  border-right: 1px solid rgba(255, 255, 255, 0.04);
}

.gantt-time-tick.hour-mark {
  background: rgba(255, 255, 255, 0.02);
  color: var(--accent-cyan);
  font-weight: 700;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.gantt-bays-lanes {
  min-width: 2200px;
  display: flex;
  flex-direction: column;
}

.gantt-lane {
  display: flex;
  height: 84px;
  border-bottom: 1px solid var(--border-color);
  position: relative;
}

.gantt-bay-info-col {
  width: 180px;
  min-width: 180px;
  padding: 12px 16px;
  background: var(--bg-tertiary);
  border-right: 1px solid var(--border-color);
  position: sticky;
  left: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bay-label { font-size: 13px; font-weight: 800; color: #fff; }
.bay-desc { font-size: 10px; color: var(--text-dim); }

.gantt-lane-slots {
  display: flex;
  flex: 1;
  position: relative;
  background-image: repeating-linear-gradient(
    90deg,
    transparent 0px,
    transparent 44px,
    rgba(255, 255, 255, 0.03) 45px
  );
}

.gantt-booking-block {
  position: absolute;
  top: 8px;
  bottom: 8px;
  border-radius: 8px;
  padding: 6px 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  transition: transform 0.15s ease;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.gantt-booking-block:hover {
  transform: translateY(-2px);
  filter: brightness(1.15);
  z-index: 10;
}

.gb-wash {
  background: linear-gradient(135deg, rgba(0, 242, 254, 0.25), rgba(79, 172, 254, 0.35));
  border: 1px solid var(--accent-cyan);
  color: #fff;
}

.gb-detailing {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.35), rgba(192, 132, 252, 0.25));
  border: 1px solid #c084fc;
  color: #fff;
}

.gb-cafe-attached {
  border-bottom: 3px solid #ffd166;
}

.gb-title {
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gb-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 9px;
  color: rgba(255, 255, 255, 0.85);
}

.ops-footer-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 14px;
  padding: 12px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 12px;
}

.stat-pill {
  display: flex;
  align-items: center;
  gap: 6px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.status-dot.green { background: #00f5a0; box-shadow: 0 0 6px #00f5a0; }
.status-dot.yellow { background: #ffd166; }
.status-dot.blue { background: #00f2fe; }

/* ========================================================
   WAREHOUSE & TECH CARDS
   ======================================================== */
.split-view-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 1024px) {
  .split-view-2col {
    grid-template-columns: 1fr;
  }
}

.card-column {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.column-header {
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-color);
}

.tech-card-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tech-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 12px;
}

.tech-title-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.badge-tag {
  font-size: 9px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(0, 242, 254, 0.12);
  color: var(--accent-cyan);
  margin-left: 6px;
}

.tech-cogs {
  font-size: 12px;
  color: var(--accent-green);
  font-family: var(--font-mono);
}

.data-table-mini {
  width: 100%;
  border-collapse: collapse;
  font-size: 11px;
}

.data-table-mini th {
  text-align: left;
  color: var(--text-dim);
  font-weight: 600;
  padding: 4px 6px;
  border-bottom: 1px solid var(--border-color);
}

.data-table-mini td {
  padding: 5px 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
}

.data-table th {
  text-align: left;
  color: var(--text-dim);
  font-weight: 700;
  padding: 8px 10px;
  border-bottom: 1px solid var(--border-color);
  background: rgba(255, 255, 255, 0.02);
}

.data-table td {
  padding: 9px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.auto-order-panel {
  background: linear-gradient(135deg, rgba(0, 245, 160, 0.08), rgba(0, 242, 254, 0.05));
  border: 1px dashed rgba(0, 245, 160, 0.35);
  border-radius: var(--radius-sm);
  padding: 14px;
}

.ao-title {
  font-size: 13px;
  font-weight: 700;
  color: #00f5a0;
  margin-bottom: 4px;
}

.order-items-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 10px 0;
}

.pill-order {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(0, 245, 160, 0.3);
  font-size: 11px;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.ao-action-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

.ao-total {
  font-size: 13px;
  color: #fff;
}

.btn-success-sm {
  background: #00f5a0;
  border: none;
  color: #03140e;
  font-weight: 700;
  font-size: 12px;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-success-sm:hover {
  filter: brightness(1.15);
  box-shadow: 0 0 15px rgba(0, 245, 160, 0.4);
}

/* ========================================================
   FINANCIAL P&L AND UNIT ECONOMICS
   ======================================================== */
.fin-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

@media (max-width: 1200px) {
  .fin-cards-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.fin-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fin-card.highlight-profit {
  background: linear-gradient(145deg, rgba(255, 209, 102, 0.12), rgba(23, 31, 48, 0.8));
  border-color: rgba(255, 209, 102, 0.4);
}

.fin-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
}

.fin-tag-green {
  font-size: 10px;
  color: #00f5a0;
  background: rgba(0, 245, 160, 0.12);
  padding: 2px 6px;
  border-radius: 4px;
}

.fin-tag-gold {
  font-size: 10px;
  color: #ffd166;
  background: rgba(255, 209, 102, 0.15);
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 800;
}

.fin-main-val {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.5px;
  font-family: var(--font-sans);
}

.text-gold { color: #ffd166; }

.fin-subtext {
  font-size: 11px;
  color: var(--text-dim);
}

.fin-mini-rows {
  border-top: 1px solid var(--border-color);
  padding-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 11px;
  color: var(--text-dim);
}

.fin-mini-rows span, .fin-mini-rows strong {
  float: right;
  color: #fff;
}

.mt-20 { margin-top: 20px; }
.mt-16 { margin-top: 16px; }

.pnl-table-wrapper {
  overflow-x: auto;
}

.pnl-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
}

.pnl-table td {
  padding: 7px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.pnl-row-header {
  background: rgba(255, 255, 255, 0.03);
  font-weight: 800;
}

.pnl-row-sub td:first-child {
  padding-left: 24px;
  color: var(--text-dim);
}

.pnl-row-highlight {
  background: rgba(0, 242, 254, 0.08);
  font-weight: 800;
  color: var(--accent-cyan);
}

.pnl-row-final {
  background: rgba(255, 209, 102, 0.15);
  font-weight: 800;
  font-size: 14px;
}

.text-danger { color: #f87171; }
.text-right { text-align: right; }

.unit-econ-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 14px;
}

.unit-selector-row {
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
}

.select-styled {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  color: #fff;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  outline: none;
}

.unit-breakdown-display {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.econ-bar-container {
  margin: 10px 0;
}

.econ-stacked-bar {
  height: 24px;
  display: flex;
  border-radius: 6px;
  overflow: hidden;
  font-size: 10px;
  font-weight: 700;
  line-height: 24px;
  text-align: center;
  color: #000;
}

.cohort-metrics-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 10px;
}

.cohort-col {
  background: rgba(255, 255, 255, 0.02);
  padding: 10px;
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.c-lbl { font-size: 10px; color: var(--text-dim); }
.c-val { font-size: 14px; font-weight: 800; color: #fff; font-family: var(--font-mono); }
.text-success { color: #00f5a0; }

/* ========================================================
   TELEGRAM & LINE CRM BOT VIEW
   ======================================================== */
.badge-connected {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}
.tg-active { background: rgba(0, 136, 204, 0.2); color: #29b6f6; border: 1px solid rgba(0, 136, 204, 0.4); }
.line-active { background: rgba(0, 185, 0, 0.2); color: #00c300; border: 1px solid rgba(0, 185, 0, 0.4); }

.journey-timeline {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.journey-node {
  display: flex;
  gap: 14px;
  position: relative;
}

.journey-node::before {
  content: '';
  position: absolute;
  top: 30px;
  bottom: -14px;
  left: 15px;
  width: 2px;
  background: rgba(255, 255, 255, 0.08);
}

.journey-node:last-child::before {
  display: none;
}

.jn-marker {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00f2fe, #4facfe);
  color: #04101e;
  font-weight: 800;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 2;
}

.jn-content {
  flex: 1;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
}

.jn-title {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

.jn-text {
  font-size: 11px;
  color: var(--text-dim);
}

.jn-tag {
  display: inline-block;
  font-size: 9px;
  color: #00f5a0;
  font-weight: 700;
  background: rgba(0, 245, 160, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
  margin-top: 4px;
}

.jn-action {
  font-size: 10px;
  color: #ffd166;
  font-weight: 600;
  margin-top: 4px;
}

/* Bot Simulator Frame */
.bot-preview-frame {
  background: #0e1621;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 580px;
}

.bot-header {
  background: #17212b;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.bot-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #2b5278;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.bot-name { font-size: 13px; font-weight: 700; color: #fff; }
.bot-sub { font-size: 10px; color: var(--accent-cyan); }

.channel-toggle {
  margin-left: auto;
  display: flex;
  gap: 4px;
}

.ch-btn {
  background: rgba(255, 255, 255, 0.05);
  border: none;
  font-size: 10px;
  font-weight: 700;
  color: var(--text-dim);
  padding: 4px 8px;
  border-radius: 4px;
  cursor: pointer;
}

.ch-btn.active {
  background: #2b5278;
  color: #fff;
}

.chat-bubbles-scroll {
  flex: 1;
  padding: 14px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.chat-msg {
  max-width: 82%;
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 12px;
  line-height: 1.4;
  position: relative;
  animation: fadeIn 0.25s ease;
}

.msg-bot {
  align-self: flex-start;
  background: #182533;
  color: #f5f5f5;
  border-bottom-left-radius: 2px;
}

.msg-user {
  align-self: flex-end;
  background: #2b5278;
  color: #fff;
  border-bottom-right-radius: 2px;
}

.msg-time {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.4);
  text-align: right;
  margin-top: 4px;
}

.bot-cta-btn {
  display: block;
  width: 100%;
  margin-top: 8px;
  background: #2481cc;
  border: none;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 7px;
  border-radius: 6px;
  text-align: center;
  cursor: pointer;
}

.bot-simulation-controls {
  background: #17212b;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 10px 14px;
}

.sim-label {
  font-size: 10px;
  color: var(--text-dim);
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

.sim-buttons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.sim-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 6px 8px;
  cursor: pointer;
  text-align: left;
  transition: var(--transition-fast);
}

.sim-btn:hover {
  background: rgba(0, 242, 254, 0.15);
  border-color: var(--accent-cyan);
}

/* ========================================================
   RAW DATA SPECIFICATION VIEW
   ======================================================== */
.spec-cards-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.spec-section-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px;
}

.spec-section-card h3 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--accent-cyan);
}

.raw-sources-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 14px;
}

@media (max-width: 1100px) {
  .raw-sources-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.source-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 12px;
}

.sb-head {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}

.sb-body {
  font-size: 11px;
  color: var(--text-dim);
  line-height: 1.4;
}

.sb-body code {
  color: #00f5a0;
  font-family: var(--font-mono);
  font-size: 10px;
}

code {
  background: rgba(0, 0, 0, 0.4);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent-cyan);
}

/* ========================================================
   MODALS & POPUPS
   ======================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.modal-overlay.active {
  display: flex;
}

.modal-card {
  width: 90%;
  max-width: 440px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
  animation: modalScale 0.2s ease;
}

@keyframes modalScale {
  from { transform: scale(0.95); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.modal-header {
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
}

.modal-close {
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 16px;
  cursor: pointer;
}

.modal-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
}

.input-styled {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  color: #fff;
  font-family: var(--font-mono);
  font-size: 13px;
  outline: none;
}

.input-styled:focus {
  border-color: var(--accent-cyan);
}

.modal-footer {
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #ffd166;
  cursor: pointer;
}
