.noughts-crosses-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.grid-cell {
    display: inline-block;
    width: 40px;
    /* or any size */
    height: 40px;
    /* or any size */
    border: 1px solid #ccc;
    font-size: clamp(1em, 1.6em, 22px);
    padding: 3px;
    /* or any style */
    text-align: center;
    line-height: 30px;
    /* match height for vertical center */
}

.grid-cell.selected {
    /* background-color: red; */
    border: none;
}

#timerCircle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid #faf9f958;
    /* Initial border color */
    position: relative;
    box-sizing: border-box;
    background: conic-gradient(#ff000064 0%, green 100%);
	background-size: 400% 400%;
}

@keyframes fillBorder {
    0% {
        background-position: 90% 90%;
    }

    100% {
        background-position: 0% 0%;
    }
}

/* Additional styles for resetting animation */
.timerAnimation {
    animation: fillBorder 7s linear forwards;
}