/* Add some basic styling for the game board */
.board {
    display: grid;
    grid-template-columns: repeat(8, 50px);
    grid-template-rows: repeat(8, 50px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.cell {
    width: 50px;
    height: 50px;
    border: 1px solid black;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Style for the "Thinking..." sign */
.thinking-sign,
.draw-sign,
.user-sign,
.ai-sign,
.doAgain-sign {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px;
    border-radius: 5px;
    display: none;
}

/* Style for directional button container */
.direction-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

/* Style for directional buttons */
.direction-buttons button {
    margin: 5px;
    width: 150px; /* Adjust the width as needed */
}

/* Style for the "Boom!" button */
.direction-buttons div {
    display: inline-block;
    margin: 5px
}

#boom-button {
    background-color: #FF5733; /* Replace with your preferred color value */
    color: white; /* Text color */
    border: none; /* Remove button border */
    padding: 10px 20px; /* Adjust padding as needed */
    border-radius: 5px; /* Rounded corners */
    cursor: pointer; /* Add a cursor pointer for interactivity */
}

/* Style for the "Refresh" button and its container */
.refresh-button {
    background-color: #3498db; /* Replace with your preferred color value */
    color: white; /* Text color */
    border: none; /* Remove button border */
    cursor: pointer; /* Add a cursor pointer for interactivity */
}

/* Add styles for user soldiers */
.user-soldier {
    background-color: #008cff; /* Green background for user soldiers */
    color: #000000; /* Black text color */
}

/* Add styles for AI soldiers */
.ai-soldier {
    background-color: #ff6666; /* Toned-down red */
    color:  #ff6666; /* Toned-down red */
    
}

.title-container {
    display: flex;
    justify-content: center;
    align-items: center;
    /* height: 100vh; This makes the container take the full viewport height */
}