#checkers-game-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

#checkers-game {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

#game-board {
    display: grid;
    grid-template-columns: repeat(8, 50px);
    grid-template-rows: repeat(8, 50px);
    width: 400px;
    height: 400px;
    border: 2px solid #333;
}

.board-square {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
}

.light-square {
    background-color: #f0d9b5;
}

.dark-square {
    background-color: #b58863;
}

.piece {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
}

.red-piece {
    background-color: red;
    border: 2px solid darkred;
}

.black-piece {
    background-color: black;
    border: 2px solid #333;
}

.king-piece {
    position: relative;
}

.king-piece::after {
    content: '♔';
    position: absolute;
    color: gold;
    font-size: 20px;
}

#game-info {
    text-align: center;
    background-color: #e7e7e7;
    padding: 20px;
    border-radius: 10px;
}

#restart-game {
    margin-top: 15px;
    padding: 10px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}