body {
    font-family: monospace;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-flow: column;
    max-height: 100vh;
    max-width: 100vw;
    flex-direction: column;
    align-items: center;
    background-color: #121212; /* Dark background */
    color: #e0e0e0; /* Light text color */
    user-select: none; /* for non-webkit browsers */
    moz-user-select: none;
    webkit-user-select: none;
}
h1, h2, h3 {
    text-align: center;
    color: #e0e0e0; /* Light text color */
}
.player {
    margin: 10px;
    padding: 10px;
    border: 1px solid #444; /* Darker border */
    cursor: pointer;
    border-radius: 5px;
    background-color: #1e1e1e; /* Dark background */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5); /* Darker shadow */
}
.players-role-revealed {
    background-color: #1e1e1e; /* Dark background */
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5); /* Darker shadow */
    max-width: 600px;
    line-height: 1.6;
    font-size: 1em;
    color: #e0e0e0; /* Light text color */
}
.player.selected {
    background-color: #555; /* Slightly lighter dark background */
}
.checkboxes-container {
    display: flex;
    flex-direction: column;
    align-items: left;
}
.mission-results-container {
    display: flex;
    justify-content: space-between;
    padding: 2vmin;
    flex-wrap: wrap;
}
.mission {
    display: flex;
    width: 15vmin;
    height: 15vmin;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 10vmin;
    margin: 2vmin;
    border-radius: 2vmin;
}
.mission-pending {
    background-color: #444; /* Darker gray */
}
.mission-fail {
    background-color: #d32f2f; /* Darker red */
}
.mission-pass {
    background-color: #388e3c; /* Darker green */
}
.mission-result-boxes {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 5vmin;
}
.box {
    width: 15vmin;
    height: 15vmin;
    margin: 5px 0;
    border-radius: 5px;
}
.blue {
    background-color: #388e3c; /* Darker green */
}
.red {
    background-color: #d32f2f; /* Darker red */
}
.button-container {
    display: flex;
    flex-direction: column;
    gap: 2px;
    justify-content: center;
    width: 100%;
}
button {
    margin: 10px;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    background-color: #6c757d; /* neutral color */
    color: white;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5); /* Darker shadow */
}
button:disabled {
    background-color: #555; /* Darker disabled color */
    cursor: not-allowed;
}
.role-reveal {
    text-align: center;
    font-size: 24px;
    margin: 20px 0;
    color: #e0e0e0; /* Light text color */
}
.input-group {
  margin-top: 10px;
  margin-bottom: 10px;
  display: flex;
  align-items: center; /* Vertically align items */
  padding: 8px;
  border: 1px solid #444;
  border-radius: 5px;
  background-color: #1e1e1e;
}

.input-group label {
  flex-grow: 1;
  margin-right: 10px;
  color: #e0e0e0;
  font-size: 16px;
  display: flex; /* To align label text and input if needed */
  flex-direction: column; /* Stack label text and input */
}

.input-group input[type="text"] {
  padding: 8px;
  font-size: 16px;
  border: 1px solid #444;
  border-radius: 5px;
  background-color: #121212;
  color: #e0e0e0;
  margin-top: 5px;
}

.handle {
  user-select: none;
  cursor: grab;
  font-size: 1.5em;
  margin-left: auto;
  color: #e0e0e0;
  padding: 5px;
  display: flex; /* Use flexbox for the handle */
  align-items: center; /* Center the '☰' vertically */
}

label {
  font-size: 16px;
  margin-bottom: 5px;
  color: #e0e0e0;
}
