/**
 * Character info panel styles
 */

#character-panel {
  background: rgba(26, 26, 46, 0.95);
  border: 2px solid #4a4a6a;
  border-radius: 10px;
  padding: 14px 16px;
  min-width: 180px;
  pointer-events: auto;
}

#character-panel .close-btn {
  position: absolute;
  top: 8px;
  right: 10px;
  background: none;
  border: none;
  color: #888;
  font-size: 20px;
  cursor: pointer;
  line-height: 1;
}

#character-panel .close-btn:hover {
  color: #fff;
}

#character-panel .header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

#character-panel .color-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid white;
}

#character-panel .name {
  font-size: 16px;
  font-weight: bold;
  color: white;
}

#character-panel .status {
  color: #aaa;
  font-size: 13px;
  margin-bottom: 6px;
}

#character-panel .position {
  color: #666;
  font-size: 11px;
}

#character-panel .destination {
  color: #4ade80;
  font-size: 12px;
  margin-top: 6px;
  font-style: italic;
}
