/* ── Status bar ───────────────────────────────────── */

.bloom-status {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.35rem 0.65rem;
    background: #f8f9fa;
    border: 1px solid #e8eaed;
    border-radius: 4px 4px 0 0;
    font-size: 0.72rem;
    color: #6c757d;
    min-height: 1.8em;
    overflow-x: auto;
    white-space: nowrap;
}
.bloom-status b { color: #2d2d2d; font-weight: 600; }
.bloom-status-sep { width: 1px; height: 1em; background: #d0d8e4; flex-shrink: 0; }
.bloom-status-cell { color: #999; }
.bloom-status-search { flex-shrink: 0; }
.bloom-status-verdict { margin-left: auto; flex-shrink: 0; font-weight: 600; font-size: 0.78rem; }

/* ── Progress bar ────────────────────────────────── */

.bloom-progress {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.3rem 0.65rem;
    background: #f8f9fa;
    border: 1px solid #e8eaed;
    border-top: none;
    border-radius: 0 0 4px 4px;
    margin-bottom: 0.5rem;
}
.bloom-bar { flex: 1; height: 2px; background: #e0e4ea; border-radius: 2px; overflow: hidden; }
.bloom-bar-fill { height: 100%; width: 0%; background: #4a6fa5; border-radius: 2px; transition: width 0.1s linear; }
.bloom-progress-label { font-size: 0.72rem; color: #4a6fa5; font-weight: 500; min-width: 6em; text-align: center; white-space: nowrap; border-left: 1px solid #e0e4ea; padding-left: 0.75rem; }

/* ── Grid ────────────────────────────────────────── */

#bloom-canvas-wrap { display: flex; }
#bloom-canvas { display: block; width: 100%; cursor: crosshair; image-rendering: pixelated; }

/* ── Speed toggle ────────────────────────────────── */

.bloom-speed.active { background: #4a6fa5 !important; border-color: #4a6fa5 !important; color: #fff !important; }

/* ── Search verdicts ─────────────────────────────── */

.sr-bit-set { color: #22c55e; }
.sr-bit-unset { color: #ef4444; }
.sr-verdict { font-weight: 600; margin-left: 0.5em; }
.sr-verdict.found { color: #22c55e; }
.sr-verdict.not-found { color: #6c757d; }
.sr-verdict.false-positive { color: #f59e0b; }
