/* Root scale lever — every rem/em on the page multiplies by this. */
html {
    font-size: calc(100% * var(--prc-font-scale, 1));
}

.prc-fontsize {
    position: fixed;
    bottom: 16px; /* moved off the top to clear the WP admin bar */
    left: 16px;
    z-index: 99999;
    display: flex;
    gap: 4px;
    align-items: center;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 4px 6px;
    box-shadow: 0 1px 6px rgba(0,0,0,.12);
}

    .prc-fontsize button {
        border: 0;
        background: transparent;
        cursor: pointer;
        line-height: 1;
        padding: 4px 7px;
        border-radius: 50%;
        color: var(--color-pri, #298294);
    }

        .prc-fontsize button:hover {
            background: #eef5f6;
        }

        .prc-fontsize button[aria-pressed="true"] {
            background: var(--color-pri, #298294);
            color: #fff;
        }

    .prc-fontsize .prc-fs-sm {
        font-size: 13px;
    }

    .prc-fontsize .prc-fs-md {
        font-size: 16px;
    }

    .prc-fontsize .prc-fs-lg {
        font-size: 19px;
    }
