.synth-heading-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 6px;
}

.synth-heading-row h1 {
    margin-bottom: 0;
}

.synth-version-switch {
    display: inline-grid;
    grid-template-columns: 1fr 1fr;
    flex: 0 0 auto;
    border: 1px solid #2f7a2f;
    background: #050905;
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.synth-version-switch a {
    min-width: 64px;
    padding: 7px 10px;
    color: #76d576;
    text-align: center;
    text-decoration: none;
}

.synth-version-switch a + a {
    border-left: 1px solid #2f7a2f;
}

.synth-version-switch a.active {
    color: #d4ffd4;
    background: #174217;
    box-shadow: inset 0 0 0 1px #7cff7c;
}

.new-model-badge {
    color: #9eff9e;
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.new-model-actions {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin: 8px 0 12px;
}

.new-model-actions button {
    border: 1px solid #2f7a2f;
    background: #0f210f;
    color: #9eff9e;
    padding: 7px 10px;
    cursor: pointer;
    font: 700 11px/1.2 "Courier New", Courier, monospace;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.new-model-actions button.active,
.new-model-actions button.tap {
    background: #174217;
    box-shadow: inset 0 0 0 1px #7cff7c;
}

.new-synth-panel .new-led {
    fill: #071007;
    stroke: #2f7a2f;
    stroke-width: 1.2;
    transition: fill 70ms linear, filter 70ms linear;
}

.new-synth-panel .new-led.active {
    fill: #c7ffc7;
    filter: drop-shadow(0 0 5px rgba(124,255,124,.9));
}

.new-synth-panel .new-led.blink {
    animation: new-led-blink .24s steps(1, end) infinite;
}

.new-synth-panel [id$="-inner"] { pointer-events: none; }

#plex-svg-panel.new-synth-panel { max-width: 470px; }

.new-synth-panel .panel-label,
.new-synth-panel .panel-value {
    fill: #9eff9e;
    stroke: none !important;
    font-family: "Courier New", Courier, monospace;
    font-weight: 700;
    text-anchor: middle;
    pointer-events: none;
}

.new-synth-panel .panel-label { font-size: 7px; letter-spacing: .03em; }
.new-synth-panel .panel-value { font-size: 5.8px; }

@keyframes new-led-blink {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: .16; }
}

@media (max-width: 600px) {
    .synth-heading-row {
        align-items: stretch;
        flex-direction: column;
        gap: 10px;
    }

    .synth-version-switch {
        width: 100%;
    }

    .synth-version-switch a {
        padding: 9px 10px;
    }
}
