    .results-container {
        margin-top: 15px;
        animation: fadeIn 0.5s ease;
    }

    .result-row {
        margin-bottom: 12px;
    }

    .result-label {
        display: flex;
        justify-content: space-between;
        font-size: 11px;
        margin-bottom: 4px;
        font-family: 'JetBrains Mono', monospace;
    }

    .progress-bar-bg {
        width: 100%;
        height: 6px;
        background: var(--border);
        border-radius: 10px;
        overflow: hidden;
    }

    .progress-bar-fill {
        height: 100%;
        background: var(--blue);
        border-radius: 10px;
        transition: width 1s ease-out;
    }

    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(10px); }
        to { opacity: 1; transform: translateY(0); }
    }