/* Stylesheet for charCountdown.js, which lives beside it in SharedWeb/wwwroot/js.

   Both hosts that use the widget link this file; neither carries its own copy any more. It is a separate
   stylesheet rather than a block inside each host's site.css precisely BECAUSE the two site.css files are
   otherwise unrelated to each other -- these four rules were the only thing they genuinely shared, and
   keeping them here is what makes "site.css is per-host" true rather than nearly true.

   P2-IDX §9-D: the fixed min-height reserves space for the live character countdown, so the counter's
   first paint never shifts the field below it -- an empty slot takes the same vertical space as a
   populated one. */

.char-countdown-slot {
    display: block;
    min-height: 1.2em;
    color: #6c757d;
    font-size: 0.85em;
}

.char-countdown-slot.char-countdown-low {
    color: #b02a37;
    font-weight: 600;
}
