body {
      font-family: Arial, sans-serif;
      text-align: center;
      background-color: #f4f4f4;
      margin: 0;
      padding: 0;
}

h1 {
      color: #333;
}

#dice-container {
      display: flex;
      justify-content: center;
      margin: 20px 0;
}

.dice {
      width: 50px;
      height: 50px;
      margin: 0 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #fff;
      border: 2px solid #333;
      border-radius: 8px;
      font-size: 1.5rem;
      cursor: pointer;
      transition: transform 0.2s, background-color 0.2s;
}

.dice.selected {
      background-color: #ffd700;
      transform: scale(1.1);
}

button {
      padding: 10px 20px;
      font-size: 1rem;
      background-color: #007BFF;
      color: white;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      transition: background-color 0.2s;
}

button:hover {
      background-color: #0056b3;
}

button:disabled {
      background-color: #cccccc;
      cursor: not-allowed;
}

#scoreboard {
      margin: 20px auto;
      max-width: 500px;
      background-color: white;
      border: 1px solid #ddd;
      border-radius: 5px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#scoreboard table {
      width: 100%;
      border-collapse: collapse;
}

#scoreboard th,
#scoreboard td {
      padding: 10px;
      border: 1px solid #ddd;
      text-align: left;
}

#scoreboard th {
      background-color: #007BFF;
      color: white;
}

#scoreboard td {
      background-color: #f9f9f9;
}

#scoreboard td:nth-child(2) {
      text-align: center;
}

#controls {
      margin: 20px 0;
      display: flex;
      justify-content: center;
      gap: 10px;
}

#controls button {
      padding: 10px 15px;
      font-size: 1rem;
      background-color: #28a745;
      color: white;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      transition: background-color 0.2s;
}

#controls button:hover {
      background-color: #218838;
}

#controls button:disabled {
      background-color: #cccccc;
      cursor: not-allowed;
}

#game {}

.wrapper {
      display: flex;
}

.column {
      float: left;
}

.w50 {
      width: 50%;
}