#board {
    width: 25em;
    margin: 1em auto;
}
#status {
    text-align: center;
    font-size: 18px;
    margin-top: 10px;
}
#chess-layout {
    display: flex;
    gap: 2em;
    align-items: flex-start;
}

#status-div {
    display: flex;
    gap: 2em;
    align-items: flex-start;
}

#chess-container {
    flex-direction: column;
    align-items: center;
}
#move-list {
    width: 20em;
    border: 1px solid #ccc;
}

#move-list ul {
    padding-left: 2em;
    list-style-type: decimal;
}
#depth-container, #time-container {
    display: flex;
    flex-direction: row;
    align-items: center;
}
#white-timer, #black-timer {
    width: 20em;
    text-align: center;
}
#white-timer {
    color: #333;
}
#black-timer {
    color: #111;
}