/* Global base */
body {
  background-color: black;
  color: white;
  font-family: "Courier New", Courier, monospace;
  margin: 0;
  padding: 1rem;
  line-height: 1.2;
}

/* Headings in Courier */
h1, h2, h3, h4, h5, h6 {
  font-family: "Courier New", Courier, monospace;
}

/* Setup form styling */
.form-section {
  margin-bottom: 1rem;
}
input,
button,
select {
  font-family: "Courier New", Courier, monospace;
  font-size: 1rem;
  cursor: pointer;
}

/* Plain‐text previews (setup & combat replay) */
.map-preview {
  white-space: pre;
  font-family: "Courier New", Courier, monospace;
  margin-bottom: 1rem;
}

/* Owned planets, pending & submitted moves lists */
#owned-planets .owned-planets,
#pending-moves ul,
#moves-summary ul,
section ul {
  list-style: none;
  padding-left: 0;
}

/* Make the canvas fill its container and scale text */
canvas#star-map {
  display: block;
  width: 100%;        /* full container width */
  height: auto;       /* height set by JS */
  border: none;
  margin: 1rem 0;
  box-sizing: border-box;
}

/* Submit/End‐turn buttons */
button {
  padding: 0.5rem 1rem;
  background: none;
  border: 1px solid white;
  color: white;
}
button:hover {
  background: white;
  color: black;
}

/* Responsive max‐width for larger screens */
@media (min-width: 600px) {
  canvas#star-map {
    max-width: 600px;
  }
}

#left, #center, #right {
  width: 100%;
  margin-bottom: 1rem;
}
#center {
  text-align: center;
}
#left-panel,
#center-panel,
#right-panel {
  white-space: pre;
  font-family: "Courier New", Courier, monospace;
  font-size: 1rem;
  line-height: 1.2;
}

/* give the Known Planets table some horizontal gutter */
#known-planets table {
  border-collapse: separate;
  border-spacing: 0.6rem 0;   /* 1rem horizontal gap, no extra vertical */
}

/* ——— RECAP ——— */
#recap-toggle {
  text-align: left;
  cursor: pointer;
  color: white;               /* white text */
  margin: 0.25rem 0;          /* minimal vertical space */
  font-size: 1rem;
  line-height: 1.2;
}
#recap-toggle:hover {
  text-decoration: underline;
}

.recap-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0.25rem 0 0.75rem 0;
  background-color: rgba(255,255,255,0.03);
  font-family: "Courier New", Courier, monospace;
  font-size: 0.95rem;
}
.recap-table td {
  text-align: left;           /* all left-aligned */
  padding: 0.1rem 0.4rem;
  white-space: nowrap;        /* prevent wrapping */
}
.recap-table tr:nth-child(even) {
  background-color: rgba(255,255,255,0.04);
}


