/* ── Temperature Classification Badges ────────────────────────────────────── */
.tmp-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    padding: 2px 5px;
    border-radius: 8px;
    white-space: nowrap;
    cursor: default;
    transition: filter 0.15s ease;
    line-height: 1.2;
}

.tmp-val {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.tmp-lbl {
    font-size: 0.62rem;
    font-weight: 500;
    opacity: 0.9;
    letter-spacing: 0.1px;
}

.tmp-badge:hover {
    filter: brightness(1.25);
}

/* < -15 °C  — Extreme Cold */
.tmp-extreme-cold {
    background: rgba(139, 92, 246, 0.25);
    color: #c4b5fd;
    border: 1px solid rgba(139, 92, 246, 0.5);
    box-shadow: 0 0 6px rgba(139, 92, 246, 0.3);
}

/* -15 to 0 °C — Cold */
.tmp-cold {
    background: rgba(59, 130, 246, 0.2);
    color: #93c5fd;
    border: 1px solid rgba(59, 130, 246, 0.45);
    box-shadow: 0 0 6px rgba(59, 130, 246, 0.25);
}

/* 0 to 15 °C — Cool */
.tmp-cool {
    background: rgba(20, 184, 166, 0.2);
    color: #5eead4;
    border: 1px solid rgba(20, 184, 166, 0.45);
    box-shadow: 0 0 6px rgba(20, 184, 166, 0.25);
}

/* 15 to 25 °C — Mild / Warm */
.tmp-mild {
    background: rgba(245, 158, 11, 0.2);
    color: #fcd34d;
    border: 1px solid rgba(245, 158, 11, 0.45);
    box-shadow: 0 0 6px rgba(245, 158, 11, 0.25);
}

/* > 25 °C — Hot */
.tmp-hot {
    background: rgba(239, 68, 68, 0.2);
    color: #fca5a5;
    border: 1px solid rgba(239, 68, 68, 0.45);
    box-shadow: 0 0 6px rgba(239, 68, 68, 0.3);
}
