/* Update your body font */
body {
  background: #308D98;
  font-family: Arial, sans-serif; /* Change from cursive to sans-serif */
  color: black;
  text-align: center;
  margin: 0; padding: 20px;
}

/* Center and enlarge the button */
#start-button {
  background: #C0942E;
  border: none;
  padding: 15px 30px;
  margin: 30px auto;
  border-radius: 12px;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  display: inline-block;
}
#start-button:hover { background: #a27e21; }

/* Character card styles with image on top, name below */
.character-card {
  display: inline-block;
  cursor: pointer;
  border: 2px solid #880048;
  border-radius: 10px;
  width: 150px;
  padding: 10px;
  margin: 10px;
  vertical-align: top;
  background: white;
}
.character-card:hover { border-color: #DD9801; }

.character-image {
  width: 100%;
  border-radius: 6px;
}

.character-name {
  margin-top: 8px;
  font-weight: bold;
}

/* Mode select boxes */
.option-box {
  display: inline-block;
  cursor: pointer;
  background: #880048;
  color: white;
  padding: 15px 20px;
  margin: 0 10px;
  border-radius: 8px;
  user-select: none;
  font-weight: bold;
}
.option-box:hover { background: #DD9801; }

/* Results list with image + name */
ol {
  text-align: left;
  display: inline-block;
  margin-top: 20px;
  padding: 0;
}
ol li {
  margin: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  font-weight: bold;
}
ol img {
  width: 50px;
  border-radius: 4px;
}
