/* =====================================
   TRAKERI DARK FORCE OVERRIDES
   SINGLE GLOBAL SCROLL MODEL
   ===================================== */

/* PAGE SCROLL ONLY */
html, body {
  background-color: #0f1115 !important;
  color: #e6e6e6 !important;
  height: auto !important;
  min-height: 100%;
  overflow-y: auto !important;
}

/* CONTAINER NEVER TRAPS SCROLL */
.controlroom-container {
  background-color: #0f1115 !important;
  height: auto !important;
  min-height: 100%;
  overflow: visible !important;
}

/* PANELS NEVER SCROLL */
.panel {
  background-color: #171a21 !important;
  overflow: visible !important;
}

/* TABLES: HORIZONTAL SCROLL ONLY */
.table-wrap {
  overflow-x: auto !important;
  overflow-y: visible !important;
}

/* Prevent accidental clipping */
* {
  box-sizing: border-box;
}

/* =========================
   TRACKER DETAIL FONT FIX
   ========================= */

body,
.controlroom-container,
.trackers-header h2,
.panel h2,
.panel h3 {
    font-family: "Segoe UI", Inter, Arial, sans-serif !important;
    letter-spacing: 0.2px;
}


/* =========================
   VEHICLE DETAIL SCROLL FIX (SAFE)
   ========================= */

body { overflow-y: auto !important; }
.controlroom-container { overflow: visible !important; height: auto !important; }
.panel { overflow: visible !important; }

