.game-board {
    display: grid;
    border: 2px solid var(--pico-h3-color);
    width: 100%;
}

.board-goal, .board-goal img {
    font-size: 0.5rem;
    position: relative;
    border: 1px solid var(--pico-h3-color);
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
}

.board-goal img {
    image-rendering: pixelated;
    border: none;
    width: 48px;
    height: 48px;
}

.board-goal:hover .board-goal-tooltip {
    opacity: 1;
    transition: ease-in-out 200ms;
}

.board-goal:hover img {
    opacity: 0;
    transition: ease-in-out 200ms;
}

.board-goal-tooltip {
    cursor: pointer;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0; /* Hidden by default */
    text-align: center;
    padding: 5px 5px;
    position: absolute;
    z-index: 1; /* Ensure tooltip is displayed above content */
}

