.dry-eye-module {
    box-sizing: border-box;
    display: grid;
    gap: 10px;
    grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
    max-width: 1280px;
    margin: 0 auto;
    padding: 24px;
    color: #18212c;
    background: #f4f6f8;
    font-family: Arial, sans-serif;
}

.dry-eye-module *,
.dry-eye-module *::before,
.dry-eye-module *::after {
    box-sizing: border-box;
}

.dry-eye-module__controls,
.dry-eye-module__patient-view {
    padding: 14px;
    border: 1px solid #d5dce3;
    border-radius: 12px;
    background: #fff;
}

.dry-eye-module__controls {
    grid-row: span 2;
}

.dry-eye-module__diagram {
    display: grid;
    gap: 10px;
    min-width: 0;
}

.dry-eye-module__diagram svg {
    display: block;
    width: 100%;
    height: auto;
    border: 1px solid #d5dce3;
    border-radius: 12px;
    background: #fff;
}

.dry-eye-module[data-view="side"] [data-dry-eye-surface-canvas],
.dry-eye-module[data-view="surface"] [data-eye-canvas] {
    display: none;
}

.dry-eye-module[data-view="side"] .dry-eye-module__surface-caption {
    display: none;
}

.dry-eye-module__eyebrow {
    margin: 0 0 6px;
    color: #4f86c6;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.dry-eye-module h1,
.dry-eye-module h2 {
    margin: 0 0 8px;
    line-height: 1.1;
}

.dry-eye-module__controls h1,
.dry-eye-module__controls h2 {
    font-size: 34px;
}

.dry-eye-module__controls > p {
    margin: 0 0 10px;
}

.dry-eye-module__patient-view h2 {
    font-size: 22px;
}

.dry-eye-module__range-row {
    display: grid;
    gap: 8px;
    margin-top: 8px;
}

.dry-eye-module input[type="range"] {
    width: 100%;
    height: 42px;
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    appearance: none;
    -webkit-appearance: none;
    background: transparent;
    touch-action: pan-y;
}

.dry-eye-module input[type="range"]::-webkit-slider-runnable-track {
    height: 10px;
    border: 0;
    border-radius: 999px;
    background: #d5dce3;
}

.dry-eye-module input[type="range"]::-moz-range-track {
    height: 10px;
    border: 0;
    border-radius: 999px;
    background: #d5dce3;
}

.dry-eye-module input[type="range"]::-webkit-slider-thumb {
    width: 28px;
    height: 28px;
    margin-top: -9px;
    border: 0;
    border-radius: 50%;
    background: #1c7695;
    box-shadow: 0 1px 2px rgba(24, 33, 44, .28);
    -webkit-appearance: none;
    appearance: none;
}

.dry-eye-module input[type="range"]::-moz-range-thumb {
    width: 28px;
    height: 28px;
    border: 0;
    border-radius: 50%;
    background: #1c7695;
    box-shadow: 0 1px 2px rgba(24, 33, 44, .28);
}

.dry-eye-module output {
    color: #1c7695;
    font-weight: 700;
}

.dry-eye-module__view-toggle {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.dry-eye-module__view-toggle button {
    min-height: 46px;
    min-width: 220px;
    padding: 8px 18px;
    border: 1px solid #aebdca;
    border-radius: 7px;
    color: #35506a;
    background: #fff;
    font: inherit;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
}

.dry-eye-module__surface-caption {
    margin: 0;
    padding: 0 8px;
    color: #52606d;
    font-size: 14px;
    line-height: 1.45;
    text-align: center;
}

.dry-eye-module__view-toggle button[aria-pressed="true"] {
    border-color: #2f7d4d;
    color: #fff;
    background: #2f7d4d;
}

.dry-eye-module__view-toggle button:focus-visible {
    outline: 3px solid rgba(28, 118, 149, .38);
    outline-offset: 2px;
}

.dry-eye-module__status {
    margin-bottom: 0;
    font-weight: 700;
}

.dry-eye-module__context {
    color: #52606d;
    font-size: 14px;
    line-height: 1.5;
}

.dry-eye-module__view-window {
    position: relative;
    display: grid;
    min-height: 150px;
    place-items: center;
    overflow: hidden;
    border-radius: 8px;
    background: #f4f6f8;
}

.dry-eye-module__view-window::after {
    position: absolute;
    inset: 0;
    content: "";
    pointer-events: none;
    opacity: var(--dry-eye-glare, 0);
    background: radial-gradient(circle at 70% 30%, rgba(255, 255, 255, .95), rgba(238, 247, 251, .38) 15%, transparent 42%);
}

.dry-eye-module__view-window span {
    z-index: 1;
    max-width: 80%;
    color: #111;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
    filter: blur(var(--dry-eye-blur, 0)) contrast(var(--dry-eye-contrast, 1));
}

.dry-eye-module__vision-cues {
    max-height: calc(var(--dry-eye-cues, 0) * 150px);
    margin: calc(var(--dry-eye-cues, 0) * 12px) 0 0;
    padding: 0 0 0 calc(var(--dry-eye-cues, 0) * 12px);
    overflow: hidden;
    border-left: 3px solid #42a7d9;
    color: #52606d;
    font-size: 14px;
    line-height: 1.45;
    opacity: var(--dry-eye-cues, 0);
    transition: max-height .2s ease, margin .2s ease, opacity .2s ease;
}

.dry-eye-module__vision-cues p {
    margin: 0 0 6px;
}

.dry-eye-module__vision-cues p:last-child {
    margin-bottom: 0;
}

@media (max-width: 800px) {
    .dry-eye-module {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 10px;
    }

    .dry-eye-module__controls {
        grid-row: auto;
    }

    .dry-eye-module__controls,
    .dry-eye-module__patient-view {
        padding: 12px;
    }

    .dry-eye-module__controls h1,
    .dry-eye-module__controls h2 {
        font-size: 28px;
    }

    .dry-eye-module__patient-view h2 {
        font-size: 19px;
    }

    .dry-eye-module__controls > p,
    .dry-eye-module__context {
        font-size: 14px;
    }

    .dry-eye-module__range-row {
        gap: 0;
        margin-top: 4px;
    }

    .dry-eye-module__view-toggle {
        justify-content: stretch;
    }

    .dry-eye-module__view-toggle button {
        flex: 1;
        min-height: 46px;
        min-width: 0;
        padding-inline: 10px;
    }

    .dry-eye-module input[type="range"] {
        min-height: 44px;
    }

    .dry-eye-module input[type="range"]:focus-visible {
        outline: 3px solid rgba(28, 118, 149, .38);
        outline-offset: 3px;
        border-radius: 999px;
    }

    .dry-eye-module input[type="range"]::-webkit-slider-runnable-track {
        height: 10px;
        border: 0;
        border-radius: 999px;
        background: #d5dce3;
    }

    .dry-eye-module input[type="range"]::-moz-range-track {
        height: 10px;
        border: 0;
        border-radius: 999px;
        background: #d5dce3;
    }

    .dry-eye-module input[type="range"]::-webkit-slider-thumb {
        width: 30px;
        height: 30px;
        margin-top: -10px;
        border: 0;
        border-radius: 50%;
        background: #1c7695;
        box-shadow: 0 1px 2px rgba(24, 33, 44, .28);
        -webkit-appearance: none;
        appearance: none;
    }

    .dry-eye-module input[type="range"]::-moz-range-thumb {
        width: 30px;
        height: 30px;
        border: 0;
        border-radius: 50%;
        background: #1c7695;
        box-shadow: 0 1px 2px rgba(24, 33, 44, .28);
    }

    .dry-eye-module__view-window {
        min-height: 130px;
    }

    .dry-eye-module__view-window span {
        font-size: 24px;
    }
}
