body {
  font-family: sans-serif;
  margin: 20px;
  background: #1e1e28;
  color: #eee;
}

#game {
  display: flex;
  gap: 20px;
}

#map {
  background: #2a2a38;
  border: 1px solid #444;
  width: 700px;
  height: 440px;
}

#winner-banner {
  font-size: 20px;
  font-weight: bold;
  color: #ffd54a;
  margin-bottom: 10px;
}

.province-circle {
  stroke: #111;
  stroke-width: 2;
  cursor: pointer;
}

.province-circle.selected {
  stroke: #ffd54a;
  stroke-width: 3;
}

.province-label {
  fill: #fff;
  font-size: 11px;
  pointer-events: none;
  text-anchor: middle;
}

.adjacency-line {
  stroke: #555;
  stroke-width: 1;
}

.army-marker {
  fill: #ffd54a;
  stroke: #000;
  stroke-width: 1;
}

.siege-ring {
  fill: none;
  stroke: #e33;
  stroke-width: 3;
}

#side-panel {
  min-width: 260px;
  background: #2a2a38;
  padding: 12px;
  border: 1px solid #444;
}

#players {
  margin-bottom: 10px;
  display: flex;
  gap: 20px;
  font-size: 14px;
}

button {
  margin: 4px 4px 4px 0;
  cursor: pointer;
}

input[type="number"] {
  width: 60px;
}

.owner-null { fill: #777; }
