#prediction-bars {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 90%;
    max-width: 400px;
    margin: 0;
    padding: 10px 0;
    z-index: 20;
    background: rgba(20, 20, 30, 0.7); /* semi-transparent dark background */
    border-radius: 12px;
}
.prediction-bar {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    margin-right: 8px;
    font-family: "Fira Mono", "Consolas", "Menlo", "Monaco", "Liberation Mono", "Courier New", monospace;
}
/* ...existing code... */
.prediction-label {
    flex: 0 0 100px;             /* Do not grow or shrink, fixed width */
    text-align: right;
    margin-left: 12px;
    margin-right: 12px;
    font-size: 1em;
    color: #fff;
    white-space: nowrap;        /* Prevents label from wrapping */
    overflow: hidden;           /* Hide overflow */
    text-overflow: ellipsis;    /* Show ellipsis for overflow */
}
/* ...existing code... */
.prediction-bar-bg {
    flex: 1;
    background: #222;
    border-radius: 6px;
    overflow: hidden;
    height: 24px;
    position: relative;
}
.prediction-bar-fill {
    background: linear-gradient(90deg, #4fc3f7, #1976d2);
    height: 100%;
    transition: width 0.2s;
}
.prediction-bar-value {
    position: absolute;
    right: 8px;
    top: 0;
    height: 100%;
    color: #fff;
    font-size: 0.95em;
    display: flex;
    align-items: center;
    pointer-events: none;
}

#prediction-model-loading {
    font-family: "Fira Mono", "Consolas", "Menlo", "Monaco", "Liberation Mono", "Courier New", monospace;
    color: #fff;
    font-size: 1em;
    text-align: center;
    margin: 32px 0 24px 0;
    letter-spacing: 0.02em;
}
