/* ATEC SMART · atec.tr v2 stylesheet */
:root {
  --atec: #0F6E56;
  --atec-2: #14A079;
  --atec-mint: #5EEAB4;
  --kombi: #DD7142;
  --warn: #EF4444;
  --info: #3B82F6;
  --bg: #FAF7F0;
  --bg-2: #FFFFFF;
  --bg-card: #F4EFE5;
  --text: #1F1A2A;
  --text-mid: #4A4458;
  --text-dim: #7C7388;
  --border: rgba(15,110,86,0.12);
  --shadow: 0 8px 24px rgba(31,26,42,0.06);
  --radius: 14px;
  --radius-sm: 8px;
  /* LCD palette (gerçek LCD ile birebir) */
  --lcd-bg: #0B1320;
  --lcd-red: #E63946;
  --lcd-yellow: #FBBF24;
  --lcd-green: #10B981;
  --lcd-blue-tab: #4FA3E0;
  --lcd-white: #FFFFFF;
  --lcd-empty: #1F2937;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img, svg, canvas { display: block; max-width: 100%; }
h1, h2, h3, h4 { font-weight: 600; line-height: 1.2; margin: 0; }
p { margin: 0; }
a { color: var(--atec); text-decoration: none; }
a:hover { text-decoration: underline; }
button { font: inherit; cursor: pointer; }
.g { color: var(--atec); }

/* NAV */
.nav { position: sticky; top: 0; z-index: 100; background: rgba(250,247,240,0.92); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 14px 20px; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.nav-brand { display: flex; align-items: center; gap: 10px; }
.nav-logo { width: 32px; height: 32px; border-radius: 8px; background: linear-gradient(135deg, var(--atec) 0%, var(--atec-2) 100%); color: #FFF; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 18px; }
.nav-name { font-weight: 700; color: var(--text); font-size: 17px; }
.nav-menu { display: flex; gap: 22px; align-items: center; }
.nav-menu a { color: var(--text-mid); font-size: 14px; font-weight: 500; }
.btn-login { background: var(--atec); color: #FFF; border: 0; padding: 8px 16px; border-radius: 20px; font-size: 13px; font-weight: 600; }
.btn-login:hover { background: var(--atec-2); }
@media (max-width: 640px) { .nav-menu a:not(.btn-login) { display: none; } }

/* BUTTONS */
.btn-primary { background: linear-gradient(135deg, var(--atec) 0%, var(--atec-2) 100%); color: #FFF; border: 0; padding: 12px 22px; border-radius: 10px; font-size: 14px; font-weight: 600; }
.btn-primary:hover { filter: brightness(1.08); }
.btn-primary.lg { padding: 16px 32px; font-size: 16px; border-radius: 12px; }
.btn-primary.full { width: 100%; }
.btn-secondary { background: var(--bg-2); color: var(--atec); border: 1.5px solid var(--atec); padding: 12px 22px; border-radius: 10px; font-size: 14px; font-weight: 600; display: inline-block; }
.btn-secondary:hover { background: var(--atec); color: #FFF; }
.btn-secondary.full { width: 100%; text-align: center; }

/* HERO */
.hero { max-width: 1200px; margin: 0 auto; padding: 40px 20px 60px; display: grid; grid-template-columns: 1fr 1.1fr; gap: 40px; align-items: center; }
@media (max-width: 880px) { .hero { grid-template-columns: 1fr; gap: 28px; } }
.hero-text h1 { font-size: 42px; letter-spacing: -1px; margin-bottom: 16px; }
@media (max-width: 540px) { .hero-text h1 { font-size: 32px; } }
.hero-text p { font-size: 16px; color: var(--text-mid); margin-bottom: 22px; }
.hero-cta { display: flex; gap: 10px; margin-bottom: 28px; flex-wrap: wrap; }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.hero-stats > div { background: var(--bg-2); border-radius: var(--radius-sm); padding: 10px; border: 1px solid var(--border); }
.hero-stats strong { display: block; color: var(--atec); font-size: 14px; }
.hero-stats span { font-size: 11px; color: var(--text-dim); }
.hero-visual { width: 100%; aspect-ratio: 4/3; background: linear-gradient(180deg, #ECE6D5 0%, #D6CAB0 60%, #BAA987 100%); border-radius: var(--radius); overflow: hidden; position: relative; box-shadow: var(--shadow); }
.hero-visual canvas { width: 100%; height: 100%; cursor: grab; touch-action: none; }
.scene-label { position: absolute; top: 12px; left: 12px; background: rgba(15,110,86,0.92); color: #FFF; padding: 5px 11px; border-radius: 8px; font-size: 12px; font-weight: 500; pointer-events: none; z-index: 2; }

/* PRODUCTS */
.products { max-width: 1200px; margin: 0 auto; padding: 40px 20px; }
.section-head { text-align: center; margin-bottom: 28px; }
.section-head h2 { font-size: 30px; margin-bottom: 8px; }
.section-head p { color: var(--text-mid); font-size: 15px; max-width: 600px; margin: 0 auto; }
.prd-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 18px; }
.prd { background: var(--bg-2); border-radius: var(--radius); padding: 18px; display: flex; flex-direction: column; gap: 12px; border: 1px solid var(--border); box-shadow: var(--shadow); }
.prd-name { font-size: 16px; font-weight: 700; color: var(--text); }
.prd-tag { font-size: 12px; color: var(--text-mid); margin-top: -4px; }
.cube-scene { width: 100%; height: 260px; background: linear-gradient(180deg, #ECE3CE 0%, #D6C8AC 100%); border-radius: 10px; perspective: 850px; position: relative; cursor: grab; touch-action: none; user-select: none; overflow: hidden; }
.cube-scene::after { content: '↻ Sürükle'; position: absolute; bottom: 6px; right: 8px; font-size: 9px; color: rgba(0,0,0,0.35); pointer-events: none; font-weight: 600; }

.cube { position: absolute; top: 50%; left: 50%; width: 0; height: 0; transform-style: preserve-3d; }
.f { position: absolute; transform-style: preserve-3d; box-sizing: border-box; backface-visibility: hidden; -webkit-backface-visibility: hidden; box-shadow: inset 0 0 0 1px rgba(0,0,0,0.12); }
.f.top    { width: 200px; height: 165px; left: -100px; top: -82.5px; transform: rotateX(90deg)  translateZ(40px); }
.f.bottom { width: 200px; height: 165px; left: -100px; top: -82.5px; transform: rotateX(-90deg) translateZ(40px); }
.f.front  { width: 200px; height: 80px;  left: -100px; top: -40px;   transform: translateZ(82.5px); }
.f.back   { width: 200px; height: 80px;  left: -100px; top: -40px;   transform: rotateY(180deg) translateZ(82.5px); }
.f.left   { width: 165px; height: 80px;  left: -82.5px; top: -40px;  transform: rotateY(-90deg) translateZ(100px); }
.f.right  { width: 165px; height: 80px;  left: -82.5px; top: -40px;  transform: rotateY(90deg)  translateZ(100px); }
.st-face { background: #FAFAFA; border-radius: 6px; display: flex; flex-direction: column; overflow: hidden; font-family: system-ui, sans-serif; }
.st-up { background: #FFFFFF; flex: 0.55; padding: 10px 12px 7px; display: flex; justify-content: space-between; align-items: flex-start; }
.st-bn { font-size: 16px; font-weight: 800; color: var(--atec); line-height: 1; letter-spacing: -0.4px; }
.st-bs { font-size: 5.5px; font-weight: 700; color: #5C7B70; letter-spacing: 3px; margin-top: 3px; }
.st-mdl { font-size: 7px; font-weight: 700; color: #2A2A2A; margin-top: 6px; }
.st-ctl { display: flex; flex-direction: column; align-items: flex-end; gap: 5px; padding-top: 1px; }
.st-but { width: 9px; height: 9px; border-radius: 50%; background: radial-gradient(circle at 35% 30%, #F0EBDC, #B5AC97); border: 0.5px solid #6E6E6E; }
.st-zg { display: flex; align-items: flex-end; gap: 3px; }
.st-led { width: 4px; height: 4px; border-radius: 50%; background: #10B981; box-shadow: 0 0 3px rgba(16,185,129,0.6); }
.zg-ic { display: flex; flex-direction: column; align-items: center; gap: 1px; }
.zg-ic .ar { border: 0.8px solid #3C3C3C; border-bottom: 0; border-radius: 6px 6px 0 0; }
.zg-ic .a1 { width: 9px; height: 4.5px; }
.zg-ic .a2 { width: 5.5px; height: 2.8px; }
.zg-ic .dt { width: 2px; height: 2px; background: #3C3C3C; border-radius: 50%; margin-top: 0.5px; }
.st-dn { background: var(--kombi); flex: 0.45; padding: 6px 8px 8px; display: flex; flex-direction: column; gap: 4px; }
.st-lb { display: flex; justify-content: space-between; gap: 2px; }
.st-lb span { font-size: 6.5px; font-weight: 800; color: #FFF; flex: 1; text-align: center; }
.st-sc { display: flex; justify-content: space-between; gap: 2px; }
.scrw { width: 16px; height: 16px; border-radius: 50%; background: radial-gradient(circle at 35% 30%, #E4E4E4, #888); border: 0.5px solid #1A1A1A; position: relative; flex-shrink: 0; }
.scrw::before { content: ''; position: absolute; top: 50%; left: 22%; width: 56%; height: 2px; background: #1A1A1A; transform: translateY(-50%); }
.tf-face { background: linear-gradient(180deg, #F0F0F0 0%, #DCDCDC 100%); display: flex; }
.tf-inner { display: flex; width: 100%; padding: 6px; gap: 3px; }
.tm-col { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 3px; min-width: 0; }
.tm-lbl { color: #FFF; font-size: 7px; font-weight: 800; padding: 2.5px 0; border-radius: 2px; width: 100%; text-align: center; }
.tm-scr { width: 12px; height: 12px; border-radius: 50%; background: radial-gradient(circle at 35% 30%, #E4E4E4, #888); border: 0.5px solid #1A1A1A; position: relative; }
.tm-scr::before { content: ''; position: absolute; top: 50%; left: 25%; width: 50%; height: 1.5px; background: #1A1A1A; transform: translateY(-50%); }
.sf-face { background: #FAFAFA; padding: 7px 8px; display: flex; flex-direction: column; gap: 2px; }
.sf-t { font-weight: 800; font-size: 9px; color: var(--atec); }
.sf-r { font-size: 6.5px; color: #2A2A2A; line-height: 1.3; }
.sf-bot { display: flex; justify-content: space-between; align-items: flex-end; margin-top: auto; padding-top: 4px; }
.sf-qr { width: 28px; height: 28px; flex-shrink: 0; }
.sf-cm { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2px 4px; font-size: 5.5px; font-weight: 800; color: #1A1A1A; align-content: end; padding: 0 2px; }
.sf-url { font-size: 7px; font-weight: 800; color: var(--atec); letter-spacing: 1px; }
.pf-face { background: #FAFAFA; display: flex; align-items: center; justify-content: center; padding: 8px; }
.pf-logo { font-size: 7px; font-weight: 800; color: var(--atec); letter-spacing: 1.5px; opacity: 0.45; }
.spec { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; font-size: 13px; color: var(--text-mid); }
.spec li { padding-left: 16px; position: relative; line-height: 1.45; }
.spec li::before { content: ''; position: absolute; left: 0; top: 7px; width: 6px; height: 6px; background: var(--atec); border-radius: 50%; }
.spec strong { color: var(--text); font-weight: 600; }
.cert-row { display: flex; flex-wrap: wrap; gap: 5px; }
.cert-row span { background: var(--bg-card); border: 1px solid var(--border); border-radius: 5px; padding: 3px 8px; font-size: 10.5px; font-weight: 700; color: var(--text-mid); letter-spacing: 0.5px; }

/* MESH */
.mesh-section { background: linear-gradient(135deg, #082821 0%, #143832 100%); color: #FFF; padding: 50px 0; margin-top: 20px; }
.mesh-inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: grid; grid-template-columns: 1fr 1.2fr; gap: 30px; align-items: center; }
@media (max-width: 760px) { .mesh-inner { grid-template-columns: 1fr; } }
.mesh-text h2 { font-size: 26px; color: var(--atec-mint); margin-bottom: 12px; }
.mesh-text p { color: #B8D4CC; font-size: 15px; margin-bottom: 18px; }
.mesh-text strong { color: #FFF; }
.mesh-points { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.mesh-points li { color: #DCE8E2; font-size: 14px; }
.mesh-visual { background: rgba(0,0,0,0.28); border-radius: var(--radius); padding: 12px; }

/* CTA */
.cta { max-width: 800px; margin: 0 auto; padding: 60px 20px; text-align: center; }
.cta h2 { font-size: 32px; margin-bottom: 12px; }
.cta p { color: var(--text-mid); font-size: 16px; margin-bottom: 24px; }
.contact-info { margin-top: 28px; display: flex; gap: 22px; justify-content: center; flex-wrap: wrap; font-size: 13px; color: var(--text-mid); }
.contact-info span { display: flex; align-items: center; gap: 6px; }

footer { background: #0E1F1A; color: #B8D4CC; padding: 24px 20px; }
.foot-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; gap: 16px; align-items: center; flex-wrap: wrap; }
.foot-inner strong { color: var(--atec-mint); display: block; }
.foot-inner small { color: #8AAA9F; font-size: 12px; }

/* MODAL */
.modal { position: fixed; inset: 0; z-index: 1000; display: none; align-items: center; justify-content: center; padding: 16px; }
.modal.open { display: flex; }
.modal-bg { position: absolute; inset: 0; background: rgba(15,26,42,0.55); backdrop-filter: blur(4px); }
.modal-box { position: relative; background: var(--bg-2); border-radius: var(--radius); padding: 28px 28px 22px; max-width: 420px; width: 100%; box-shadow: 0 20px 60px rgba(0,0,0,0.25); }
.modal-box.small { max-width: 320px; padding: 22px 22px 18px; }
.modal-close { position: absolute; top: 12px; right: 14px; background: transparent; border: 0; font-size: 28px; color: var(--text-dim); padding: 0; width: 28px; height: 28px; line-height: 1; }
.modal-tabs { display: flex; gap: 4px; margin-bottom: 18px; border-bottom: 1px solid var(--border); }
.modal-tabs .tab { background: transparent; border: 0; padding: 10px 16px; font-size: 14px; font-weight: 600; color: var(--text-dim); border-bottom: 2px solid transparent; margin-bottom: -1px; }
.modal-tabs .tab.active { color: var(--atec); border-bottom-color: var(--atec); }
.auth-form { display: none; flex-direction: column; gap: 12px; }
.auth-form.active { display: flex; }
.auth-form h3 { font-size: 19px; margin-bottom: 2px; }
.form-sub { font-size: 13px; color: var(--text-mid); margin-bottom: 6px; }
.auth-form input { border: 1.5px solid var(--border); border-radius: 8px; padding: 11px 14px; font-size: 14px; font-family: inherit; color: var(--text); }
.auth-form input:focus { outline: 0; border-color: var(--atec); }
.form-msg { font-size: 12px; min-height: 16px; color: var(--text-mid); }
.form-msg.err { color: var(--warn); }
.form-msg.ok { color: var(--atec); }

.slot-menu-list { display: flex; flex-direction: column; gap: 8px; margin-top: 14px; }
.slot-menu-item { background: var(--bg-card); border: 1px solid var(--border); padding: 12px 14px; border-radius: 8px; font-size: 14px; font-weight: 600; color: var(--text); text-align: left; display: flex; align-items: center; gap: 10px; }
.slot-menu-item:hover { background: var(--atec); color: #FFF; }
.slot-menu-item.danger { color: var(--warn); }
.slot-menu-item.danger:hover { background: var(--warn); color: #FFF; }

/* ============ DASHBOARD ============ */
/* CRITICAL: hidden attribute over-ride fix */
.dashboard[hidden] { display: none !important; }

.dashboard { position: fixed; inset: 0; background: #0F1614; z-index: 900; display: flex; flex-direction: column; color: #E8E8E8; overflow-y: auto; }
.dash-bar { display: flex; align-items: center; gap: 12px; padding: 12px 18px; background: #1A2624; border-bottom: 1px solid #2A3633; flex-wrap: wrap; }
.dash-mode { font-size: 11px; font-weight: 800; letter-spacing: 1.5px; background: var(--atec); color: #FFF; padding: 4px 10px; border-radius: 4px; }
.dash-mode.admin { background: var(--kombi); }
.dash-mode.guest { background: #6B7280; }
.dash-user { font-size: 13px; color: #B8C5C0; flex: 1; }
.dash-conn { font-size: 12px; color: #B8C5C0; padding: 4px 10px; border-radius: 12px; background: #0F1614; }
.dash-conn.ok { color: var(--atec-mint); }
.dash-close { background: transparent; color: #FFF; border: 1px solid #3A4642; padding: 6px 14px; border-radius: 6px; font-size: 13px; font-weight: 600; }
.dash-close:hover { background: var(--warn); border-color: var(--warn); }
.dash-content { padding: 20px; display: grid; grid-template-columns: 1.3fr 1fr; gap: 20px; max-width: 1200px; margin: 0 auto; width: 100%; }
@media (max-width: 880px) { .dash-content { grid-template-columns: 1fr; } }

/* LCD Frame (yatay, 4:3) */
.lcd-wrap { display: flex; flex-direction: column; align-items: center; }
.lcd-frame { background: linear-gradient(160deg, #1F1F1F 0%, #0E0E0E 100%); border-radius: 18px; padding: 14px; box-shadow: 0 20px 50px rgba(0,0,0,0.4); width: 100%; max-width: 600px; }
.lcd-screen {
  background: var(--lcd-bg);
  border-radius: 6px;
  padding: 8px 10px 6px;
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: system-ui, sans-serif;
}

.lcd-statusbar {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  color: var(--lcd-green);
  font-weight: 700;
  padding: 2px 4px;
}
.lcd-stat-item { display: flex; align-items: center; gap: 4px; }
.lcd-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--lcd-green); box-shadow: 0 0 4px var(--lcd-green); }
.lcd-dot.off { background: var(--lcd-red); box-shadow: 0 0 4px var(--lcd-red); }
.lcd-clock { margin-left: auto; font-weight: 700; font-size: 13px; color: var(--lcd-white); }

/* 3 üst kart: ODA / NEM / HEDEF */
.lcd-top-cards { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 6px; }
.lcd-top-card {
  background: transparent;
  border: 1.5px solid #FFFFFF;
  border-radius: 4px;
  padding: 4px 6px 5px;
  text-align: left;
  color: var(--lcd-white);
  cursor: pointer;
  transition: border-color 0.15s;
}
.lcd-top-card.selected {
  border-color: var(--lcd-yellow);
  color: var(--lcd-yellow);
}
.lcd-top-card .lcd-top-lbl { font-size: 10px; font-weight: 700; letter-spacing: 0.5px; }
.lcd-top-card .lcd-top-val { font-size: 22px; font-weight: 800; line-height: 1; margin-top: 1px; }

/* 12 slot grid (3 sütun × 4 satır) - LCD ile birebir */
.lcd-slots {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4px;
  flex: 1;
  min-height: 0;
}
.lcd-slot {
  background: transparent;
  border: 1.5px dashed #2D3748;
  border-radius: 4px;
  padding: 4px 6px 3px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 1px;
  color: var(--lcd-white);
  transition: border-color 0.15s;
  user-select: none;
  overflow: hidden;
  min-height: 0;
}
.lcd-slot:active { transform: scale(0.97); }
.lcd-slot.empty {
  border-style: dashed;
  border-color: #2D3748;
  align-items: center;
  justify-content: center;
  color: #4B5563;
  font-size: 10px;
  font-weight: 600;
}
.lcd-slot.empty::after { content: 'Boş'; }
.lcd-slot.kombi { border-color: var(--lcd-red); border-style: solid; }
.lcd-slot.swic-on { border-color: var(--lcd-green); border-style: solid; }
.lcd-slot.swic-off { border-color: var(--lcd-red); border-style: solid; }
.lcd-slot.pending { border-color: var(--lcd-yellow); border-style: solid; }
.lcd-slot.selected { border-width: 2px; }

.lcd-slot-header {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.1;
}
.lcd-slot-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--lcd-green);
  flex-shrink: 0;
}
.lcd-slot.swic-off .lcd-slot-dot { background: var(--lcd-red); }
.lcd-slot.kombi .lcd-slot-dot { background: var(--lcd-red); }
.lcd-slot.pending .lcd-slot-dot { background: var(--lcd-yellow); }

.lcd-slot-name { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lcd-slot-mode { font-size: 9px; opacity: 0.85; margin-top: 1px; line-height: 1.1; }
.lcd-slot-state { font-size: 9px; opacity: 0.7; margin-top: auto; line-height: 1.1; font-weight: 700; }

/* ANA / AYAR tabs */
.lcd-tabs { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; padding-top: 2px; }
.lcd-tab {
  background: #2A2A2A;
  color: var(--lcd-white);
  border: 0;
  border-radius: 3px;
  padding: 5px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.lcd-tab.active { background: var(--lcd-blue-tab); color: var(--lcd-white); }

.lcd-brand { text-align: center; color: #E8E8E8; font-weight: 700; font-size: 12px; letter-spacing: 2.5px; margin-top: 10px; }

/* Control Panel */
.ctrl-panel { display: flex; flex-direction: column; gap: 16px; }
.ctrl-section { background: #1A2624; border-radius: var(--radius); padding: 16px; }
.ctrl-section h4 { font-size: 13px; color: #B8C5C0; margin-bottom: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.temp-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 12px; }
.t-btn { width: 44px; height: 44px; border-radius: 50%; background: #2A3633; color: #FFF; border: 0; font-size: 22px; font-weight: 700; }
.t-btn:hover { background: var(--atec); }
.t-val { font-size: 36px; font-weight: 800; color: #FFF; flex: 1; text-align: center; }
.kombi-row { display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.dev-toggle { background: var(--atec); color: #FFF; border: 0; padding: 8px 14px; border-radius: 8px; font-size: 13px; font-weight: 600; }
.dev-toggle.on { background: var(--kombi); }
.petek-row { display: flex; align-items: center; gap: 6px; font-size: 12px; color: #B8C5C0; }
.petek-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--info); transition: background 0.4s; }
.log-line { background: #0F1614; border-left: 3px solid var(--atec-2); padding: 8px 12px; border-radius: 4px; font-size: 12px; color: #B8C5C0; margin-top: 8px; min-height: 16px; }
.log-line.warn { border-left-color: var(--warn); color: #FCA5A5; }

#slotInfo { display: flex; flex-direction: column; gap: 6px; font-size: 13px; color: #B8C5C0; }
#slotInfo div { display: flex; justify-content: space-between; gap: 12px; }
#slotInfo .k { color: #8AAA9F; }
#slotInfo .v { color: #FFF; font-weight: 600; }

.dashboard.demo .dev-toggle, .dashboard.demo .t-btn, .dashboard.guest .dev-toggle, .dashboard.guest .t-btn { opacity: 0.95; }
.dashboard.guest #pairBtn { opacity: 0.5; cursor: not-allowed; }
