/* LMT 캔버스 오버레이 — 가로 모드 강제 (portrait 회전) */
@media (orientation: portrait) {
    #canvas-overlay.lmt-landscape {
        transform: rotate(90deg);
        transform-origin: top left;
        width: 100vh;
        height: 100vw;
        top: 0;
        left: 100vw;
    }
}

/* 도구 패널 — 최대 높이 제한 (스크롤 가능) */
#tool-panel {
    max-height: calc(100vh - 6rem);
    max-height: calc(100dvh - 6rem);
    overflow-y: auto;
}

/* 가로 모드에서 도구 패널 높이 제한 조정 */
@media (orientation: portrait) {
    #canvas-overlay.lmt-landscape #tool-panel {
        max-height: calc(100vw - 6rem);
    }
}
