body {
  font-family: sans-serif;
  text-align: center;
  background-color: #35654d;
  margin: 0;
  padding: 0;
}

h1 {
  margin-top: 20px;
  font-size: 32px;
  color: white;
}

#table {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
}

#top-player, #left-player, #right-player {
  font-size: 18px;
  font-weight: bold;
  color: white;
}

#middle-row {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 900px;
}

#left-player, #right-player {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  text-align: center;
}

#center-area {
  flex-grow: 1;
  text-align: center;
}

#status {
  font-size: 18px;
  margin: 10px 0;
  color: white;
}

#discard-area {
  margin: 10px 0;
}

#discard-image {
  margin: 0 auto;
  width: 70px;
  height: 90px;
}

#player-hand, .bot-hand {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding: 10px 0;
}

#player-section {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #35654d;
  padding: 10px 0;
}

.tile {
  width: 50px;
  height: 65px;
  margin: 3px;
  background-color: white;
  background-size: cover;
  background-position: center;
  border: 1px solid #333;
  border-radius: 4px;
  cursor: pointer;
}

.tile.selected {
  border: 2px solid yellow;
}

.bot-tile {
  background-color: gray;
  background-image: none !important;
  border: 1px solid #444;
}

#action-buttons {
  margin: 10px 0;
}

#action-buttons button {
  margin: 0 5px;
  padding: 8px 16px;
  font-size: 14px;
}

#charleston-buttons {
  margin-top: 10px;
}

#charleston-buttons button {
  padding: 8px 16px;
  font-size: 14px;
  margin: 5px;
}
