body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
}

#game-window {
    width: 1280px;
    height: 650px;
    border: 2px solid #333;
    padding: 35px;
    box-sizing: border-box;
    background-color: white;
}

h1 {
    text-align: center;
    margin-top: 0;
    margin-bottom: 0px;
}
.stats {
    display: flex;
    gap: 25px;
}
.pass { color: blue; }
.fail { color: red; }
#dashboard {
    display: flex;
    flex-direction: column;
    height: calc(100% - 100px);
}

.chart-row {
    display: flex;
    justify-content: space-between;
    height: 50%;
    margin-bottom: 20px;
}

.chart-container {
    width: calc(50% - 10px);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 20px solid #888;
    box-sizing: border-box;
    padding: 10px;
    position: relative;
}

.full-width {
    width: 100%;
    height: calc(50% - 20px);
}

canvas {
    width: 100% !important;
    height: 100% !important;
}

.buttons button {
    padding: 5px 10px;
    margin-top: 5px;
    margin-right: 10px;
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
}
.inputs {
    display: flex;
    gap: 20px;
}
.input-group {
    display: flex;
    flex-direction: column;
}
input[type="number"] {
    width: 60px;
    margin-top: 10px;
}

.chart-label {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    font-weight: bold;
}

.chart-value {
    margin-right: 10px;
    font-size: 14px;
    color: #333;
}