body, html {
    height: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
}

#gameContainer {
    text-align: center;
}

#shuffle {
    margin-bottom: 1em;
    font-size: 1em;
    padding: 0.5em 1em;
    cursor: pointer;
}

#play3x, #play1x, #fold {
    margin-bottom: 1em;
    font-size: 1em;
    padding: 0.5em 1em;
    cursor: pointer;
}

#others, #playerCards {
    display: flex;
    justify-content: center;
    gap: 0.5em;
    margin-bottom: 2em;
}

#message, #strategy, #outs {
    margin-bottom: 1em;
    font-size: 1em;
    height: 0.5em;
    padding: 0px 1em;
}

#strategy {
    font-style: italic;
    visibility: hidden;
}

#outs {
    visibility: hidden;  // initial value
}

.card {
    width: 5em; /* Adjust based on your images */
    height: 7em; /* Adjust based on your images */
    background-size: cover;
}

.other .card {
    margin-top: 0.5em;
    margin-right: 2em;
}

.grayed-out {
  color: #999;
  background-color: #ccc;
  border: 1px solid #999;
}

.label {
    width: 5em;
    text-align: center;
    margin-top: 0.5em;
}

#links {
    margin-top: 5em;
}

/* Unvisited link */
a:link {
  color: #007bff; /* Blue color for links */
  text-decoration: none; /* Removes underline from links */
  transition: color 0.3s ease-in-out; /* Smooth color transition */
}

/* Visited link */
a:visited {
  color: #5a5a5a; /* Dark grey color for visited links */
}

/* Hover link */
a:hover {
  color: #ff4500; /* Orange color when mouse hovers over link */
  text-decoration: underline; /* Adds underline on hover for emphasis */
}

/* Active link */
a:active {
  color: #0336ff; /* Different color when link is clicked */
}
