body {
    background-color: var(--bg-color);
}

#grid-circles {
    display: grid;
    grid-template-columns: repeat(7, 50px);
    grid-auto-rows: 50px;
    gap: 4px;
    padding: 5px;
    justify-content: center;
    background-color: gray;
    margin: auto;
    width: fit-content;
    border-radius: 5px;
    border: 2px solid black;
}

.grid-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--bg-color);
    border: 1px solid black;
    display: flex;
    align-items: center;
    justify-content: center;
}

#grid-buttons {
    display: grid;
    grid-template-columns: repeat(7, 50px);
    grid-auto-rows: 50px;
    gap: 4px;
    padding: 5px;
    justify-content: center;
    margin: auto;
    width: fit-content;
}

.grid-button {
    background-color: #5BBA6F;
    border: none;
    border-radius: 100%;
    font-size: 150%;
    padding-bottom: 3px;
}

.grid-button:hover {
    background-color: #2A9134;
}

dialog {
    position: relative;
    width: 65vw;
    height: 90vh;
    max-width: none;
    max-height: none;
    margin: auto;
    padding: 1rem;
    background-color: rgba(91, 186, 111, 0.95);
    text-align: center;
    border: 3px solid black;
    border-radius: 3vw;
}

dialog:focus {
    outline: 0;
}

#menu-dialog {
    display: flex;
    justify-content: center;
}

.column {
    margin: 0%;
    width: 50%;
}

#create-game {
    border-right: 2px solid black;
}

#join-game {
    border-left: 2px solid black;
}