body {
    font-family: Arial, sans-serif;
    background: #2e5e3b;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}
#gameContainer {
    display: flex;
    background: #f0e5c0;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}
#board {
    margin-right: 20px;
}
#ludoCanvas {
    background: #fff3c9;
    border-radius: 8px;
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
}
#sidePanel {
    width: 250px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
#playersList {
    background: #fff;
    padding: 10px;
    border-radius: 8px;
    font-size: 14px;
}
#diceArea {
    background: #fff;
    padding: 10px;
    text-align: center;
    border-radius: 8px;
}
#rollBtn {
    background: #ffaa33;
    border: none;
    padding: 8px 16px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
}
#diceValue {
    font-size: 24px;
    font-weight: bold;
    margin-top: 10px;
}
#chat {
    background: #fff;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    height: 300px;
}
#messages {
    flex: 1;
    overflow-y: auto;
    padding: 8px;
    border-bottom: 1px solid #ccc;
    font-size: 12px;
}
#chatInput {
    width: calc(100% - 20px);
    margin: 5px 10px;
    padding: 5px;
}
#sendBtn {
    margin: 5px 10px;
    background: #28a745;
    color: white;
    border: none;
    padding: 5px;
    border-radius: 4px;
    cursor: pointer;
}
