/* ============================================================
   Termometrar — modul-CSS
   Inga hårdkodade färger; använd var(--color-*) genomgående.
   ============================================================ */

/* Board container */
.thermometers-board {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.thermometers-board svg {
    max-width: 100%;
    height: auto;
    border-radius: 0.75rem;
    overflow: visible;
}

/* Clue labels — handled by JS fill attribute updates */

/* Hover feedback on click zones */
.thermometers-board svg [data-t] {
    transition: opacity 0.1s ease;
}

.thermometers-board svg [data-t]:hover {
    opacity: 0.85;
}

/* Status message */
#status-message {
    transition: opacity 0.3s ease;
    min-height: 1.5rem;
}

/* Win state — slight glow on the board */
.thermometers-board.solved svg {
    filter: drop-shadow(0 0 12px rgba(220, 38, 38, 0.4));
}
