body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #fafafa;
    text-align: center;
}

#gameTitle {
    font-size: 28px;
    font-weight: bold;
    margin: 20px 0 10px 0;
    color: #333;
}

#gameContainer {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    margin: 0 auto;
    max-width: 1100px; /* Canvas width + sidebar + spacing */
}

#sidePanel {
    width: 200px;
    background-color: #f0f0f0;
    padding: 10px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    margin-right: 10px;
}
#sidePanel h3 {
    font-size: 16px;
    margin-bottom: 10px;
}

#sidePanel label {
    display: block;
    margin-bottom: 5px;
}


#mainArea {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#gameCanvas {
    border: 1px solid #ccc;
    background-color: #ffffff;
}

#analyticsPanel {
    margin-top: 10px;
    width: 800px;
    background-color: #333;
    color: white;
    padding: 15px;
    box-sizing: border-box;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 24px;
    border-radius: 4px;
}

#analyticsPanel span:first-child {
    margin-right: 15px;
    font-weight: bold;
}
