/* Калькулятор срока годности */

.term-row { display: flex; gap: 8px; align-items: stretch; }

.expiry-status { display: block; font-weight: 600; }
.answer-ok .expiry-status { color: var(--success); }
.answer-warn .expiry-status { color: #b54708; }
.answer-bad .expiry-status { color: var(--danger); }

.expiry-scale {
    display: block;
    height: 8px;
    border-radius: 999px;
    background: var(--bg-subtle);
    border: 1px solid var(--border);
    margin: 10px 0 4px;
    overflow: hidden;
}
.expiry-fill {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: var(--success);
}
.answer-warn .expiry-fill { background: #b54708; }
.answer-bad .expiry-fill { background: var(--danger); }
