body {
    font-family: Arial, sans-serif;
    background-color: hsl(240, 3%, 7%);
    color: white;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1 {
    color: hsl(204, 7%, 85%);
}

.game, #adminSection {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

#numberInput, #correctNumber {
    font-size: 24px;
    width: 50px;
    text-align: center;
    border: 2px solid hsl(240, 2%, 23%);
    background-color: hsl(240, 2%, 23%);
    color: white;
    border-radius: .25em;
}

button {
    padding: 10px 20px;
    font-size: 18px;
    background-color: hsl(200, 1%, 34%);
    color: white;
    border: none;
    border-radius: .25em;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: hsl(200, 1%, 44%);
}

#results, #guesses div, #adminMessage {
    font-size: 14px;
    margin-top: 20px;
    border: .05em solid hsl(240, 2%, 23%);
    padding: 10px;
    width: 60px;
    text-align: center;
    border-radius: .25em;
    background-color: hsl(240, 2%, 23%);
}

/* Additional styles for animations and transitions */
.tile.flip {
    transform: rotateX(90deg);
    transition: transform 250ms linear;
}

/* Add any additional animations or transitions as needed */
#adminToggleBtn {
    opacity: 0.1; /* Low opacity makes the button faint */
    color: #2b2929; /* Adjust the color to be close to the background color */
    background-color: transparent; /* Optional: make the background transparent */
    border: none; /* Optional: remove the border */
    font-size: 12px; /* Optional: reduce the font size */
    cursor: pointer;
    transition: opacity 0.3s ease; /* Smooth transition for hover effect */
}

#adminToggleBtn:hover {
    opacity: 0.5; /* Slightly increase opacity on hover for usability */
}