/* ===========================================================
   LATENCY TESTER STYLES
=========================================================== */
.lt-root .lt-body { padding: 4px; }
.lt-list-pane { flex: 1; min-width: 0; }
.lt-list {
  flex: 1; overflow: auto; min-height: 0;
  background: #ffffff;
}
.lt-item {
  padding: 8px 10px;
  border-bottom: 1px solid #e0e0e0;
}
.lt-item:nth-child(even) { background: #f8f8f8; }
.lt-item-head {
  display: flex; gap: 12px; align-items: center;
  margin-bottom: 4px;
  font-family: Verdana, sans-serif; font-size: 11px;
}
.lt-item-head b { color: #000080; }
.lt-item-head code {
  flex: 1;
  font-family: "Courier New", monospace; font-size: 10px;
  color: #808080;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

.lt-result {
  display: flex; align-items: center; gap: 12px;
}
.lt-bar-wrap {
  flex: 1; height: 14px;
  background: #e8e8e8; border: 1px solid #c0c0c0;
  position: relative;
}
.lt-bar { height: 100%; transition: width 0.3s; }
.lt-bar.good { background: #4caf50; }
.lt-bar.ok { background: #ffa726; }
.lt-bar.slow { background: #ef5350; }

.lt-result-stats {
  display: flex; gap: 16px;
  font-family: "Courier New", monospace; font-size: 11px;
  flex-shrink: 0;
}
.lt-stat-lbl { color: #808080; font-size: 9px; }
.lt-stat b { color: #000080; }

.lt-result-empty {
  color: #c0c0c0; font-style: italic; font-size: 11px;
  font-family: Verdana, sans-serif;
}
.lt-result-err {
  color: #a00000; font-size: 11px;
  font-family: Verdana, sans-serif;
}

.lt-empty {
  padding: 30px; text-align: center;
  color: #808080; font-style: italic;
  font-family: Verdana, sans-serif;
}
