/* Updated Styles */
body {
    font-family: Arial, sans-serif;
    background-color: black;
    color: white;
}
.progress-value {
    font-size: 1.5em;
    margin-top: 1em;
}
.thermometer-container {
    /* Removed fixed width and height */
    border: 2px solid white;
    position: relative;
    margin-top: 2em;
    background-color: rgb(31, 31, 31);
}
.thermometer-fill {
    width: 100%;
    height: 0;
    background-color: #FFD700; /* A less intense yellow */
    position: absolute;
    bottom: 0;
}
.thermometer-lines {
    position: absolute;
    width: 100%;
    height: 100%;
}

.text-cell {
    position: absolute;
    bottom: 0;
    color: #6a6880; /* A gray that should be visible on both black and light backgrounds */
    text-align: center;
    font-weight: bold;
}
.tooltip {
    position: absolute;
    background-color: white;
    color: black;
    border: 1px solid gray;
    padding: 5px;
    z-index: 10;
}
