
body {
    height: 100vh;  /* 100% of viewport */
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #52c1a3; /*#f0f0f0;*/
}

.game-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#solution {
    display: inline-block;
    text-align: center; /* Center align the text */
    font-size: x-large;
    font-family: monospace;
    width: calc(100% - 200px); /* Adjust as necessary */
    word-wrap: break-word; /* Ensures long words will wrap */
    white-space: normal; /* Allows wrapping within the div*/
    line-height: 1.5;
}
#card-table {
    border-collapse: separate;
    border-spacing: 10px;
    margin-bottom: 20px;
    border-color:gold;
}

.card {
    width: 50px;
    height: 75px;
    border: 1px solid #000;
    border-radius: 5px;
    text-align: center;
    vertical-align: middle;
    font-size: 18px;
    cursor: pointer;
    background-color: floralwhite;
    transition: transform 0.3s;
}
.digit {
    font-size: 60px;
    font-family: "Arial";
    font-weight: bold;
    color: red;
    margin-top: 0;
}
.symbol {
    font-size: 25px;
    display: block;
    margin-bottom: -12px; /* adjust this for space between symbol and digit*/
}
th, td {
  padding: 15px;
  user-select: none; /* Prevent text selection */
}
.wonDialog {
    font: 25px Arial, sans-serif;
    position: relative;
    border-radius: 5px;
}
.closeButton {
    position: absolute;
    top: 5px;
    right: 5px;
}

.button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}
.color {
  font-weight: bold;
  background-color: floralwhite;
}
.color_played {
  font-weight: bold;
  background-color: #52c1a3;    
}
.blue { color: blue; }
.green { color: green; }
.black { color: black; }
.red { color: red; }

.howto {
    font-family: Tahoma, sans-serif;
    text-align: left;
    margin-left: 100px;
    margin-right: 100px;
}
