body {
  color: white;
  background-color: #000000;
  font-family: monospace, "Courier New", Courier;
  font-size: 1rem;
}

input {
  color: white;
  background-color: #333333;
  border-radius: 2px;
  border: none;
  margin-top: 0.1rem;
  margin-bottom: 0.1rem;
  min-height: 1.8rem;
}

label {
  float: left;
  width: 4rem;
  display: flex;
  align-items: center;
}

p {
  font-size: 0.8rem;
  margin-top: 0.1rem;
  margin-bottom: 0.1rem;
}

button {
  margin-left: 0.2rem;
  margin-right: 0.2rem;
  min-height: 2rem;
}

#header {
}

#main {
  background-color: darkgreen;
  display: flex;
  flex-wrap: wrap;
  border-radius: 4px;
  width: 100%;
  margin-top: 0.1rem;
}

#player {
  margin-top: 0.1rem;
}

#footer {
  margin-top: 0.1rem;
}

#info {
  flex-direction: column;
}

#links {
  align-items: flex-start;
  margin-left: auto;
}

#table {
  width: 100%;
  justify-content: center;
}

#pot {
  background-color: yellowgreen;
}

#playerBox {
  background-color: #999999;
  display: block;
  border-radius: 4px;
  min-width: 150px;
}

#playerList {
  background-color: #222222;
  border-radius: 4px;
  width: 100%;
  display: block;
  padding: 0.2rem;
  margin-left: 0.1rem;
}

#gameCards, #playerCards {
  height: 96px;
  margin: 0.1rem;
}

#messages {
  height: 25vh;
  width: 100%;
  overflow: hidden;
  background-color: #333333;
  display: block;
  border-radius: 4px;
}

#dealerButtons, #playerButtons {
  height: 3rem;
  flex-direction: row;
}

#seatArrow {
  font-size: 1.2rem;
}

#dealerFlag {
  color: orangered;
}

.tinyCard {
  width: 36px;
  height: 48px;
}

.row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: left;
  width: 100%;
  height: 100%;
}

.column {
  display: flex;
  align-items: center;
  height: 100%;
}

.hover { 
  cursor: pointer;
  color: skyblue; 
  font-weight: bold; 
}

/* Fade-in animation for images */
.fade-in-image {
  animation: fadeIn 0.5s;
  -webkit-animation: fadeIn 0.5s;
  -moz-animation: fadeIn 0.5s;
  -o-animation: fadeIn 0.5s;
  -ms-animation: fadeIn 0.5s;
}
@keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}

@-moz-keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}

@-webkit-keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}

@-o-keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}

@-ms-keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}

@media only screen and (max-width: 640px) {
}
