/*================================================================================
	Item Name: Vuexy - Vuejs, HTML & Laravel Admin Dashboard Template
	Version: 2.0
	Author: PIXINVENT
	Author URL: http://www.themeforest.net/user/pixinvent
================================================================================

NOTE:
------
PLACE HERE YOUR OWN SCSS CODES AND IF NEEDED, OVERRIDE THE STYLES FROM THE OTHER STYLESHEETS.
WE WILL RELEASE FUTURE UPDATES SO IN ORDER TO NOT OVERWRITE YOUR STYLES IT'S BETTER LIKE THIS.  */


.table-scrollable{
    height: 25vh;
    overflow-y: scroll;
}
.custom-option-item.active{
    color: #7367f0;
    background-color: rgba(115, 103, 240, 0.12);
    border-color: #7367f0;
}

#greetings{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

h3 {
    display: flex;
    align-items: center;
    justify-content: center;
}

#player-names-form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    height: 50px;
}

#player-names-form input[type="text"] {
    padding: 10px;
    width: 200px; /* Set the width of the input fields */
    border: 1px solid #ccc; /* Light grey border */
    border-radius: 5px; /* Rounded corners */
    font-size: 16px; /* Increase font size for better readability */
}

.status{
    display: flex;
    align-items: center;
    justify-content: center
} 

#game {
    display: flex;
    align-items: center;
    justify-content: center
}

.board {
    display: grid;
    grid-template-columns: repeat(3, 100px);
    grid-gap: 10px;
    margin: auto;
}

.cell {
    width: 100px;
    height: 100px;
    background-color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    cursor: pointer;
}

.cell:hover {
    background-color: grey;
    cursor: pointer;
    transition: ease-in 0.3s, ease-out 0.3s;
}

.tic-tac-toe-row {
    display: contents;
}

#status {
    text-align: center;
    margin-bottom: 20px;
}

.app-content.content {
    background-color: #fff;
}

.content-body {
    padding: 20px;
}