/*
 * MoverCalcs SSC Info Text presentation.
 *
 * Static Info Text rows only need their merged host cell reaffirmed as
 * vertically centered. Formula-driven Info Text rows are emitted by SSC as
 * readonly textareas; the post-process gives each one a reviewed fixed height
 * sized for its longest supported message.
 *
 * This module is CSS-only. Do not add recalculation listeners, observers,
 * polling, or runtime content measurement.
 */

td.mc-info-text-cell {
    vertical-align: middle !important;
}

textarea.mc-info-text-control {
    box-sizing: border-box !important;
    display: inline-block !important;
    height: var(--mc-info-text-height) !important;
    min-height: var(--mc-info-text-height) !important;
    max-height: var(--mc-info-text-height) !important;
    overflow: hidden !important;
    resize: none !important;
}
