body {
    background: #f8f9fa;
    margin: 0;
}
.container {
    display: flex;
    align-items: stretch;
    min-height: 100%;
}

.controls {
    padding: 30px;
    display: flex;
    flex-direction: column;
    width: 350px;
}
.controls form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.controls button {
    padding: 12px;
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}
.bord-contrainer {
    display: flex;
    flex-direction: column;
    flex: 1;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.speelbord {
    display: grid;
    grid-template-columns: repeat(11, 60px);
    grid-template-rows: repeat(11, 60px);
    gap: 4px;
    background-color: #fff;
    border-radius: 10px;
    width: fit-content;
    margin: 20px 0;
    padding: 20px;
}
.cel {
    width: 60px;
    height: 60px;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 50%;
}
.pion {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    margin: 8px;
    z-index: 2;
    color: white;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}