#infoBox {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 320px;
  max-height: 400px;
  overflow-y: auto;
  background: rgba(30, 30, 30, 0.85);
  color: #f0f0f0;
  font-family: "Segoe UI", Roboto, sans-serif;
  font-size: 13px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
  padding: 12px;
  z-index: 999;
}

#infoBox table {
  width: 100%;
  border-collapse: collapse;
}

#infoBox th {
  background: linear-gradient(135deg, #3a7bd5, #3a6073);
  color: #fff;
  font-weight: 600;
  padding: 8px;
  text-align: left;
  border-bottom: 2px solid #2a2a2a;
  border-radius: 4px 4px 0 0;
}

#infoBox td {
  padding: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  color: #e0e0e0;
}

#infoBox tr:hover td {
  background: rgba(255,255,255,0.05);
}

#infoBox tr:last-child td {
  border-bottom: none;
}
