/* BVB Analytics — application styles */

/* ── Verdict / confidence badges ──────────────────────────────────────────── */
.verdict-STRONG    { background-color: #2fb344; color: #fff; }
.verdict-POSITIVE  { background-color: #206bc4; color: #fff; }
.verdict-MIXED     { background-color: #f76707; color: #fff; }
.verdict-WEAK      { background-color: #d63939; color: #fff; }
.confidence-HIGH   { background-color: #2fb344; color: #fff; }
.confidence-MEDIUM { background-color: #f76707; color: #fff; }
.confidence-LOW    { background-color: #d63939; color: #fff; }
.badge-premium     { background-color: #6f42c1; color: #fff; font-size: 0.7em; }

/* ── Analysis signals ─────────────────────────────────────────────────────── */
.thesis-text p   { margin-bottom: 0.75rem; line-height: 1.7; }
.signal-strength { border-left: 3px solid #2fb344; padding-left: 0.75rem; }
.signal-concern  { border-left: 3px solid #d63939; padding-left: 0.75rem; }

/* ── Watchlist star button ────────────────────────────────────────────────── */
.watchlist-btn       { background: none; border: none; padding: 0 4px; cursor: pointer; font-size: 1.1rem; line-height: 1; }
.watchlist-btn:hover { opacity: 0.7; }

/* ── Reasoning trail step indicators ─────────────────────────────────────── */
.step-num {
    display: inline-flex; align-items: center; justify-content: center;
    width: 1.5rem; height: 1.5rem; border-radius: 50%;
    background-color: var(--tblr-blue-lt); color: var(--tblr-blue);
    font-size: 0.7rem; font-weight: 700; flex-shrink: 0;
}
.step-col {
    min-width: 1.5rem;
    display: flex; flex-direction: column; align-items: center;
}
.step-col::after {
    content: ''; flex: 1; width: 1px; min-height: 8px;
    background: var(--tblr-blue-lt); margin-top: 6px;
}
.step-last .step-col::after { display: none; }

/* ── HTMX loading indicator ──────────────────────────────────────────────── */
.htmx-indicator               { display: none; }
.htmx-request .htmx-indicator { display: inline-block; }
.htmx-request.htmx-indicator  { display: inline-block; }

/* ── Layout tweaks ───────────────────────────────────────────────────────── */
.page-body   { margin-top: 0.5rem !important; margin-bottom: 0.5rem !important; }
.page-header { margin-bottom: 0.75rem !important; }
html         { scroll-behavior: smooth; }
.hover-shadow:hover { box-shadow: 0 2px 8px rgba(0,0,0,0.1); transition: box-shadow 0.15s; }

/* ── Search input flat style ─────────────────────────────────────────────── */
.input-group-flat .input-group-text:first-child { border-right-color: transparent !important; }
.input-group-flat .input-group-text:last-child  { border-left-color: transparent !important; }
.input-group-flat:not(:focus-within) .input-group-text:last-child { border-right-color: var(--tblr-border-color) !important; }

/* ── Collapse chevron animation ──────────────────────────────────────────── */
.collapse-chevron { display: inline-block; transition: transform 0.2s; }
[aria-expanded="true"] .collapse-chevron { transform: rotate(180deg); }
