#DivStaticDestinations {
  width: 400px;
  height: 120px;
  position: absolute;
  right: 300px;
  bottom: 8px;
  color: #ffffff;
  background-color: rgba(0,0,0,0.75);
  padding-bottom: 10px;
  z-index: 1000;
  border-radius: 8px;
}

.statsTitle {
  display: block;
  margin: 0;
  padding: 10px 85px;
  background-color: rgba(0,0,0,0.4);
  color: #ff9217;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  font-family: Pirulen;
  border-radius: 8px 8px 0 0;
  cursor: move;        /* ← classic draggable indicator */
  user-select: none; 
}

.statsDivider {
  width: 100%;
  height: 1px;
  border: none;
  background-color: rgba(180, 180, 180, 0.6);
  margin-top: -15px;
}

.statsText {
  font-size: 11px;
  line-height: 1.4;
  opacity: 0.9;
  padding: 2px 0;
}

#FixedDestTable {
  margin-top: 10px;
  padding-left: 10px;
  border: none;     
  border-collapse: collapse; /* remove gaps between cells */
  width: 100%;               /* optional: full container width */
  /*font-family: 'Octosquares';
  font-family: 'Sans-serifes';*/
  font-family: 'Octosquares';
  /*font-family: 'Pirulen';
  font-family: 'Dungeon';*/
  font-size: 12px;
}

/* Table header and body */
#FixedDestTable th {
  color: #888;
  border: none;              /* remove all borders */
  padding: 0px 8px;          /* optional spacing */
  text-align: center;           /* default alignment */
  font-family: 'Octosquares';
  font-size: 10px;
}

#FixedDestTable td {
  border: none;              /* remove all borders */

  padding: 1px 8px; 
}

#FixedDestTable td[id$="_ID"] {
  color: #888;
}

#FixedDestTable td[id$="_Label"] {
  width: 200px;           /* fixed width */
  max-width: 200px;       /* prevent expansion */
  white-space: nowrap;    /* no wrapping */
  overflow: hidden;       /* hide overflow */
  text-overflow: ellipsis;/* show "..." for long text */
  text-align: left;
}

/* Optional: fix width for Distance and Bearing */
#FixedDestTable td[id$="_Distance"] {
    width: 65px;
    max-width: 65px;
    text-align: right;      /* numeric alignment */
    white-space: nowrap;
    overflow: hidden;
}

#FixedDestTable td[id$="_Bearing"] {
    width: 55px;
    max-width: 55px;
    text-align: right;
    white-space: nowrap;
    overflow: hidden;
}