/* Basic styles - can be adjusted further */
body {
    font-family: sans-serif;
    margin: 20px;
}

#board {
    border: 1px solid #ccc;
    width: 400px;
    height: 400px;
    margin: 20px auto;
    position: relative;
    overflow: hidden;
}

#center-label {
    font-size: 20px;
    text-align: center;
}

#players {
    margin-bottom: 20px;
}

#players-container {
    display: flex;
    flex-direction: column;
    width: 100%;
}

#players-container > .player {
    text-align: center;
}

#log {
    height: 30px;
    overflow-y: scroll;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

#auctionPanel {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #f0f0f0;
    padding: 10px;
    border-left: 1px solid #ccc;
}

#auction-tile {
    width: 20px;
    height: 20px;
    background-color: #3498db;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#auction-tile span {
    font-size: 12px;
    color: #555;
}

#auction-tile:hover {
    background-color: #29795c;
}


#log {
    padding: 10px;
}

#log-content {
    margin-bottom: 10px;
    font-size: 16px;
    color: #555;
}

#board {
    border: 1px solid #ccc;
    width: 400px;
    height: 400px;
    margin: 20px auto;
    position: relative;
    overflow: hidden;
}

#board-container {
    width: 100%;
}
