/* Poker Hand Styling */
body {
  font-family: "Segoe UI", Tahoma, sans-serif;
  background-color: #f4c95d;
  text-align: center;
  margin: 0;
  padding: 0;
}

h1 {
  font-size: 2.2em;
  color: #222;
  margin-top: 40px;
}

#pokerTable {
  background-color: #2f6d3b;
  width: 80%;
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

.hand {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.card {
  width: 100px;
  height: 150px;
  background-color: #f7f4e9;
  border: 2px solid #333;
  border-radius: 8px;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #111;
  text-align: center;
  padding: 5px;
}

#cardsLeft {
  font-weight: bold;
  color: #222;
  margin-bottom: 20px;
}

#deal {
  background-color: #555;
  color: #fff;
  font-size: 1em;
  border: none;
  border-radius: 6px;
  padding: 10px 25px;
  cursor: pointer;
  transition: background-color 0.3s;
}

#deal:hover {
  background-color: #777;
}


