/* ============================================================
   LOADRUNNER TEMPERATURES v0.5
   ============================================================ */

.lr-hidden {
    display: none !important;
}


.lr-temp-page {

    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;

    gap: 11px;
}


.lr-temp-heading {

    min-height: 57px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 14px;
}


.lr-temp-heading-left {

    display: flex;
    align-items: center;

    gap: 16px;
}


.lr-temp-tabs {

    display: flex;

    gap: 8px;
}


.lr-temp-tab,
.lr-history-range,
.lr-history-now {

    min-height: 46px;

    padding:
        7px
        16px;

    border:
        2px solid
        var(--border);

    border-radius:
        7px;

    background:
        var(--panel-secondary);

    color:
        var(--text);

    font-family:
        inherit;

    font-size:
        12px;

    font-weight:
        900;
}


.lr-temp-tab.active,
.lr-history-range.active {

    background:
        var(--green);

    color:
        #000000;
}


.lr-temp-view {

    min-height: 0;
    flex: 1;

    display: flex;
    flex-direction: column;
}


/* ============================================================
   SUMMARY
   ============================================================ */

.lr-temp-summary {

    min-height: 82px;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    border:
        2px solid
        var(--border);

    border-radius:
        10px;

    background:
        var(--panel);

    box-shadow:
        var(--shadow);

    overflow:
        hidden;
}


.lr-summary-item {

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 11px;
}


.lr-summary-item
+ .lr-summary-item {

    border-left:
        2px solid
        var(--panel-secondary);
}


.lr-summary-label {

    color:
        var(--muted);

    font-size:
        13px;

    font-weight:
        900;
}


.lr-summary-value {

    font-size:
        28px;

    font-weight:
        900;

    color:
        var(--text);
}


/* ============================================================
   CURRENT SENSOR CARDS
   ============================================================ */

.lr-sensor-grid {

    margin-top: 11px;

    min-height: 0;
    flex: 1;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 12px;

    align-content: start;

    overflow-y: auto;

    padding:
        1px
        3px
        6px;
}


.lr-sensor-card {

    min-height: 112px;

    padding:
        10px 12px;

    border:
        3px solid
        var(--border);

    border-radius:
        12px;

    background:
        var(--panel);

    box-shadow:
        var(--shadow);

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;
}


.lr-sensor-card.offline {

    border-color:
        var(--critical);
}


.lr-sensor-name {

    font-size:
        17px;

    font-weight:
        900;

    color:
        var(--muted);
}


.lr-sensor-temperature {

    margin-top:
        8px;

    font-size:
        36px;

    line-height:
        1;

    font-weight:
        900;

    color:
        var(--text);
}


.lr-sensor-online {

    margin-top:
        6px;

    font-size:
        11px;

    font-weight:
        900;

    color:
        var(--green-dark);
}


.lr-sensor-card.offline
.lr-sensor-online {

    color:
        var(--critical);
}


.lr-sensor-actions {

    width: 100%;

    margin-top: auto;

    padding-top: 17px;

    display: flex;
    justify-content: center;

    gap: 8px;
}


.lr-sensor-action {

    min-width: 96px;
    min-height: 42px;

    border:
        2px solid
        var(--border);

    border-radius:
        6px;

    background:
        var(--panel-secondary);

    color:
        var(--text);

    font-family:
        inherit;

    font-size:
        11px;

    font-weight:
        900;
}


.lr-sensor-action.delete {

    border-color:
        var(--critical);

    color:
        var(--critical);
}


/* ============================================================
   HISTORY
   ============================================================ */

.lr-history-controls {

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 10px;

    margin-bottom:
        10px;
}


.lr-history-ranges {

    display: flex;

    gap: 7px;
}


.lr-history-card {

    min-height: 0;
    flex: 1;

    padding:
        8px;

    border:
        2px solid
        var(--border);

    border-radius:
        10px;

    background:
        var(--panel);

    box-shadow:
        var(--shadow);
}


#temperature-history-canvas {

    width: 100%;
    height: 100%;

    display: block;

    touch-action: none;
}


.lr-history-legend {

    min-height: 44px;

    padding-top:
        8px;

    display: flex;
    flex-wrap: wrap;

    gap: 7px;
}


.lr-history-sensor {

    min-height: 38px;

    padding:
        5px
        13px;

    border:
        2px solid
        var(--border);

    border-radius:
        6px;

    background:
        var(--green);

    color:
        #000000;

    font-family:
        inherit;

    font-size:
        11px;

    font-weight:
        900;
}


.lr-history-sensor.disabled {

    background:
        var(--panel-secondary);

    color:
        var(--muted);
}


/* ============================================================
   MODAL
   ============================================================ */

.lr-modal-overlay {

    position: fixed;

    z-index: 5000;

    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        rgba(0,0,0,0.58);
}


.lr-modal {

    width:
        min(470px, 86vw);

    padding:
        24px;

    border:
        3px solid
        var(--border);

    border-radius:
        12px;

    background:
        var(--panel);

    color:
        var(--text);

    box-shadow:
        0 8px 28px rgba(0,0,0,0.4);
}


.lr-modal-title {

    font-size:
        22px;

    font-weight:
        900;
}


.lr-modal-subtitle {

    margin-top:
        8px;

    color:
        var(--muted);

    font-size:
        13px;

    font-weight:
        700;
}


.lr-modal-input {

    width:
        100%;

    height:
        54px;

    margin-top:
        19px;

    padding:
        9px
        13px;

    border:
        2px solid
        var(--border);

    border-radius:
        7px;

    background:
        var(--panel-secondary);

    color:
        var(--text);

    font-family:
        inherit;

    font-size:
        18px;

    font-weight:
        800;
}


.lr-modal-buttons {

    margin-top:
        21px;

    display: flex;
    justify-content: flex-end;

    gap: 10px;
}


.lr-modal-button {

    min-width:
        115px;

    min-height:
        50px;

    border:
        2px solid
        var(--border);

    border-radius:
        7px;

    background:
        var(--panel-secondary);

    color:
        var(--text);

    font-family:
        inherit;

    font-size:
        12px;

    font-weight:
        900;
}


.lr-modal-button.primary {

    background:
        var(--green);

    color:
        #000000;
}


.lr-modal-button.danger {

    border-color:
        var(--critical);

    background:
        var(--critical);

    color:
        #ffffff;
}


/* ============================================================
   1024 x 600
   ============================================================ */

@media
(max-width: 1100px) {

    .lr-temp-summary {

        min-height:
            70px;
    }


    .lr-summary-value {

        font-size:
            24px;
    }


    .lr-sensor-card {

        min-height:
            108px;

        padding:
            9px 10px;
    }


    .lr-sensor-temperature {

        margin-top:
            6px;

        font-size:
            32px;
    }


    .lr-sensor-actions {

        padding-top:
            10px;
    }

}


/* ============================================================
   ADVANCED HISTORY CONTROLS v0.6
   ============================================================ */

.lr-history-navigation {

    display:
        flex;

    gap:
        7px;
}


.lr-history-nav {

    min-width:
        58px;

    min-height:
        46px;

    border:
        2px solid
        var(--border);

    border-radius:
        7px;

    background:
        var(--panel-secondary);

    color:
        var(--text);

    font-family:
        inherit;

    font-size:
        20px;

    font-weight:
        900;
}


.lr-history-nav:active,
.lr-history-now:active {

    transform:
        scale(0.97);
}


/*
   Legend color comes directly from the sensor line color.
*/

.lr-history-sensor {

    background:
        var(--panel);

    border-width:
        3px;

    transition:
        opacity 0.1s ease;
}


.lr-history-sensor.disabled {

    background:
        var(--panel);

    opacity:
        0.30;
}


/* ============================================================
   HISTORY NAVIGATION v0.7
   ============================================================ */

.lr-history-navigation {

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    gap:
        10px;

    flex:
        1;
}


.lr-history-nav {

    min-width:
        190px;

    min-height:
        50px;

    padding:
        8px 16px;

    border:
        2px solid
        var(--border);

    border-radius:
        7px;

    background:
        var(--panel-secondary);

    color:
        var(--text);

    font-size:
        13px;

    font-weight:
        900;
}


.lr-history-nav:disabled {

    opacity:
        0.30;
}


.lr-history-now {

    min-width:
        95px;
}

/* LOADRUNNER_V11_SENSOR_SERIAL_START */

.lr-sensor-serial {
    margin-top: 3px;

    color: var(--muted);

    font-family:
        "DejaVu Sans Mono",
        monospace;

    font-size: 11px;
    font-weight: 800;
    line-height: 1.2;

    letter-spacing: 0.2px;
}

/* LOADRUNNER_V11_SENSOR_SERIAL_END */



/* LOADRUNNER_HVAC_CONTROL_V1_START */

.lr-hvac-control-view {
    min-height: 0;
    overflow-y: auto;
    padding: 1px 3px 5px;
}

.lr-hvac-control-grid {
    min-height: 0;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 10px;
    align-content: start;
}

.lr-hvac-card {
    min-width: 0;
    padding: 12px 14px;
    border: 2px solid var(--border);
    border-radius: 10px;
    background: var(--panel);
    box-shadow: var(--shadow);
}

.lr-hvac-primary-card,
.lr-hvac-status-card {
    grid-column: 1 / -1;
}

.lr-hvac-card-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.lr-hvac-title {
    margin-top: 4px;
    color: var(--text);
    font-size: 19px;
    font-weight: 900;
}

.lr-hvac-link-state {
    min-width: 205px;
    padding: 7px 9px;
    border: 2px solid var(--border);
    border-radius: 7px;
    text-align: center;
    font-size: 9px;
    font-weight: 900;
}

.lr-hvac-link-state.pending {
    border-color: var(--warning);
    color: var(--warning);
}

.lr-hvac-link-state.ready {
    border-color: var(--green-dark);
    color: var(--green);
    -webkit-text-stroke: 0.25px #000000;
    paint-order: stroke fill;
}

.lr-hvac-main-controls {
    margin-top: 11px;
    display: grid;
    grid-template-columns: 0.85fr 1.25fr 1fr;
    gap: 10px;
    align-items: stretch;
}

.lr-hvac-power-column,
.lr-hvac-setpoint-column,
.lr-hvac-live-column {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.lr-hvac-power-button {
    min-height: 67px;
    border: 3px solid var(--border);
    border-radius: 9px;
    background: var(--panel-secondary);
    color: var(--text);
    font-family: inherit;
    font-weight: 900;
}

.lr-hvac-power-button span,
.lr-hvac-power-button strong {
    display: block;
}

.lr-hvac-power-button span {
    font-size: 10px;
}

.lr-hvac-power-button strong {
    margin-top: 3px;
    font-size: 23px;
}

.lr-hvac-power-button.on {
    border-color: var(--green-dark);
    background: var(--green);
    color: #000000;
}

.lr-hvac-power-button.off {
    border-color: var(--critical);
}

.lr-hvac-command-status {
    margin-top: 7px;
    text-align: center;
}

.lr-hvac-command-status span,
.lr-hvac-control-label,
.lr-hvac-live-metric span,
.lr-hvac-status-list span {
    display: block;
    color: var(--muted);
    font-size: 9px;
    font-weight: 900;
}

.lr-hvac-command-status strong {
    display: block;
    margin-top: 3px;
    color: var(--text);
    font-size: 11px;
    font-weight: 900;
}

.lr-hvac-control-label {
    margin-bottom: 5px;
    text-align: center;
}

.lr-hvac-setpoint-row {
    display: grid;
    grid-template-columns: 48px minmax(90px, 1fr) 48px;
    gap: 8px;
    align-items: center;
}

.lr-hvac-step-button {
    height: 58px;
    border: 2px solid var(--border);
    border-radius: 8px;
    background: var(--panel-secondary);
    color: var(--text);
    font-family: inherit;
    font-size: 31px;
    font-weight: 900;
}

.lr-hvac-step-button:disabled {
    opacity: 0.35;
}

.lr-hvac-setpoint-display {
    text-align: center;
}

.lr-hvac-setpoint-display strong,
.lr-hvac-setpoint-display span {
    display: block;
}

.lr-hvac-setpoint-display strong {
    color: var(--text);
    font-size: 31px;
    line-height: 1;
    font-weight: 900;
}

.lr-hvac-setpoint-display span {
    margin-top: 4px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
}

.lr-hvac-setpoint-note,
.lr-hvac-helper {
    margin-top: 7px;
    color: var(--muted);
    font-size: 9px;
    line-height: 1.3;
    font-weight: 700;
    text-align: center;
}

.lr-hvac-live-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
}

.lr-hvac-live-metric {
    padding: 9px 6px;
    border: 2px solid var(--panel-secondary);
    border-radius: 8px;
    text-align: center;
}

.lr-hvac-live-metric strong {
    display: block;
    margin-top: 5px;
    color: var(--text);
    font-size: 18px;
    font-weight: 900;
}

.lr-hvac-button-grid {
    margin-top: 10px;
    display: grid;
    gap: 7px;
}

.lr-hvac-mode-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.lr-hvac-fan-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.lr-hvac-choice {
    min-height: 46px;
    border: 2px solid var(--border);
    border-radius: 7px;
    background: var(--panel-secondary);
    color: var(--text);
    font-family: inherit;
    font-size: 11px;
    font-weight: 900;
}

.lr-hvac-choice.active {
    border-color: #000000;
    background: var(--green);
    color: #000000;
}

.lr-hvac-choice:disabled {
    opacity: 0.28;
}

.lr-hvac-special-card {
    display: flex;
    flex-direction: column;
}

.lr-hvac-special-grid {
    margin-top: 10px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
}

.lr-hvac-special-button {
    min-height: 54px;
    padding: 6px 8px;
    border: 2px solid var(--border);
    border-radius: 7px;
    background: var(--panel-secondary);
    color: var(--text);
    font-family: inherit;
}

.lr-hvac-special-button strong,
.lr-hvac-special-button span {
    display: block;
}

.lr-hvac-special-button strong {
    font-size: 11px;
    font-weight: 900;
}

.lr-hvac-special-button span {
    margin-top: 3px;
    color: var(--muted);
    font-size: 8px;
    font-weight: 700;
}

/* Momentary command acknowledgement, not an absolute toggle state. */
.lr-hvac-special-button.command-feedback {
    border-color: #000000;
    background: var(--green);
    color: #000000;
}

.lr-hvac-special-button.command-feedback span {
    color: #000000;
}

.lr-hvac-special-button:disabled {
    opacity: 0.32;
}

.lr-hvac-status-list {
    margin-top: 9px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 7px;
}

.lr-hvac-status-list > div {
    padding: 8px 6px;
    border: 2px solid var(--panel-secondary);
    border-radius: 7px;
    text-align: center;
}

.lr-hvac-status-list strong {
    display: block;
    margin-top: 4px;
    color: var(--text);
    font-size: 13px;
    font-weight: 900;
}

.lr-hvac-control-message {
    margin-top: 8px;
    color: var(--muted);
    font-size: 9px;
    line-height: 1.35;
    font-weight: 700;
}

@media (max-width: 1050px) {

    .lr-hvac-control-grid {
        gap: 7px;
    }

    .lr-hvac-card {
        padding: 9px 10px;
    }

    .lr-hvac-title {
        font-size: 16px;
    }

    .lr-hvac-link-state {
        min-width: 170px;
        font-size: 8px;
    }

    .lr-hvac-main-controls {
        gap: 7px;
    }

    .lr-hvac-mode-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .lr-hvac-fan-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .lr-hvac-choice {
        min-height: 42px;
        font-size: 9px;
    }

    .lr-hvac-step-button {
        height: 52px;
    }

    .lr-hvac-setpoint-display strong {
        font-size: 27px;
    }
}

/* LOADRUNNER_HVAC_CONTROL_V1_END */

/* LOADRUNNER_ENVIRONMENTAL_CONTROLS_V1_START */

.lr-environment-card {
    margin-top: 10px;
    min-height: 96px;
    padding: 10px 12px;
    display: grid;
    grid-template-columns: minmax(210px, .85fr) minmax(0, 2fr);
    gap: 12px;
    align-items: stretch;
    border: 2px solid var(--border);
    border-radius: 10px;
    background: var(--panel);
    box-shadow: var(--shadow);
}

.lr-environment-heading {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.lr-environment-eyebrow {
    color: var(--muted);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .04em;
}

.lr-environment-status {
    margin-top: 4px;
    color: var(--text);
    font-size: 15px;
    font-weight: 900;
}

.lr-environment-status.bad,
.lr-environment-status.warning {
    color: var(--critical);
}

.lr-environment-note {
    margin-top: 5px;
    color: var(--muted);
    font-size: 9px;
    font-weight: 700;
    line-height: 1.25;
}

.lr-environment-metrics {
    min-width: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
}

.lr-environment-metric {
    min-width: 0;
    padding: 7px 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--panel-secondary);
    border-radius: 7px;
    text-align: center;
}

.lr-environment-metric span {
    color: var(--muted);
    font-size: 9px;
    font-weight: 900;
}

.lr-environment-metric strong {
    margin-top: 4px;
    color: var(--text);
    font-size: 20px;
    font-weight: 900;
    line-height: 1;
}

.lr-environment-metric strong.warning {
    color: var(--critical);
}

.lr-history-metric-switch {
    margin-bottom: 8px;
    display: flex;
    gap: 7px;
}

.lr-history-metric-button {
    min-height: 36px;
    padding: 5px 14px;
    border: 2px solid var(--border);
    border-radius: 6px;
    background: var(--panel-secondary);
    color: var(--text);
    font-family: inherit;
    font-size: 10px;
    font-weight: 900;
}

.lr-history-metric-button.active {
    background: var(--green);
    color: #000000;
    box-shadow: inset 0 0 0 1px #000000;
}

#humidity-history-canvas {
    width: 100%;
    height: 100%;
    display: block;
    touch-action: none;
}

.lr-humidity-history-summary {
    min-height: 44px;
    padding-top: 10px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 900;
}

@media (max-width: 1100px) {
    .lr-environment-card {
        min-height: 82px;
        margin-top: 7px;
        padding: 7px 8px;
        grid-template-columns: minmax(180px, .75fr) minmax(0, 2fr);
        gap: 8px;
    }

    .lr-environment-status {
        font-size: 13px;
    }

    .lr-environment-note {
        font-size: 8px;
    }

    .lr-environment-metrics {
        gap: 4px;
    }

    .lr-environment-metric {
        padding: 5px 3px;
    }

    .lr-environment-metric span {
        font-size: 8px;
    }

    .lr-environment-metric strong {
        font-size: 17px;
    }

    .lr-history-metric-switch {
        margin-bottom: 6px;
    }

    .lr-history-metric-button {
        min-height: 32px;
        padding: 4px 11px;
        font-size: 9px;
    }
}

@media (max-width: 700px) {
    .lr-temp-page {
        overflow-y: auto;
    }

    .lr-environment-card {
        grid-template-columns: 1fr;
    }

    .lr-environment-metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lr-history-controls {
        flex-wrap: wrap;
    }

    .lr-history-card {
        min-height: 280px;
    }
}

/* LOADRUNNER_ENVIRONMENTAL_CONTROLS_V1_END */

/* LOADRUNNER_HVAC_MOBILE_HOTFIX_V2_START */

@media (max-width: 800px) {

    .lr-hvac-control-view {
        overflow: visible;
        padding: 0 2px 8px;
    }

    .lr-hvac-control-grid {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        gap: 10px;
        width: 100%;
    }

    .lr-hvac-primary-card,
    .lr-hvac-status-card {
        grid-column: auto;
    }

    .lr-hvac-card {
        width: 100%;
        min-width: 0;
        box-sizing: border-box;
        padding: 11px 12px;
    }

    .lr-hvac-card-heading {
        display: grid;
        grid-template-columns: 1fr;
        gap: 9px;
        align-items: stretch;
    }

    .lr-hvac-link-state {
        width: 100%;
        min-width: 0;
        box-sizing: border-box;
        padding: 8px 10px;
        font-size: 10px;
        line-height: 1.2;
    }

    .lr-hvac-main-controls {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        width: 100%;
    }

    .lr-hvac-power-column,
    .lr-hvac-setpoint-column,
    .lr-hvac-live-column {
        width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }

    .lr-hvac-power-button {
        width: 100%;
        min-height: 78px;
        box-sizing: border-box;
    }

    .lr-hvac-setpoint-row {
        display: grid;
        grid-template-columns: 58px minmax(0, 1fr) 58px;
        gap: 9px;
        width: 100%;
        align-items: center;
    }

    .lr-hvac-step-button {
        width: 100%;
        height: 60px;
        min-width: 0;
        padding: 0;
        font-size: 31px;
    }

    .lr-hvac-setpoint-display {
        min-width: 0;
    }

    .lr-hvac-setpoint-display strong {
        font-size: 35px;
        white-space: nowrap;
    }

    .lr-hvac-setpoint-display span {
        font-size: 13px;
    }

    .lr-hvac-live-column {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .lr-hvac-live-metric {
        min-width: 0;
        min-height: 82px;
        padding: 10px 6px;
        box-sizing: border-box;
    }

    .lr-hvac-live-metric span {
        font-size: 9px;
        line-height: 1.15;
    }

    .lr-hvac-live-metric strong {
        font-size: 19px;
        line-height: 1.05;
        overflow-wrap: anywhere;
    }

    .lr-hvac-mode-grid,
    .lr-hvac-fan-grid,
    .lr-hvac-special-grid,
    .lr-hvac-status-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .lr-hvac-choice {
        width: 100%;
        min-width: 0;
        min-height: 52px;
        padding: 7px 5px;
        box-sizing: border-box;
        font-size: 12px;
        line-height: 1.1;
        white-space: normal;
        overflow-wrap: anywhere;
    }

    .lr-hvac-special-button {
        width: 100%;
        min-width: 0;
        min-height: 64px;
        box-sizing: border-box;
    }

    .lr-hvac-special-button strong {
        font-size: 12px;
    }

    .lr-hvac-special-button span {
        font-size: 9px;
        line-height: 1.2;
    }

    .lr-hvac-status-list > div {
        min-width: 0;
        box-sizing: border-box;
    }

    .lr-hvac-status-list strong {
        font-size: 13px;
        overflow-wrap: anywhere;
    }

    .lr-hvac-helper,
    .lr-hvac-control-message,
    .lr-hvac-setpoint-note {
        font-size: 10px;
        line-height: 1.3;
    }
}

@media (max-width: 500px) {

    .lr-hvac-card {
        padding: 10px;
    }

    .lr-hvac-title {
        font-size: 18px;
    }

    .lr-hvac-setpoint-row {
        grid-template-columns: 54px minmax(0, 1fr) 54px;
        gap: 7px;
    }

    .lr-hvac-step-button {
        height: 56px;
        font-size: 29px;
    }

    .lr-hvac-setpoint-display strong {
        font-size: 32px;
    }

    .lr-hvac-live-metric {
        min-height: 78px;
    }

    .lr-hvac-choice {
        min-height: 50px;
        font-size: 11px;
    }
}

/* LOADRUNNER_HVAC_MOBILE_HOTFIX_V2_END */
