/* ═══════════════════════════════════════════════════════════════
   CHẾ ĐỘ TOÀN MÀN HÌNH — dùng Browser Fullscreen API
   ═══════════════════════════════════════════════════════════════ */

.editor-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    background: #fff;
}

/* Khi browser fullscreen: wrapper chiếm 100vh */
.editor-wrapper:fullscreen {
    width: 100vw;
    height: 100vh;
}

.editor-wrapper:fullscreen .editor-topbar {
    flex-shrink: 0;
}

.editor-wrapper:fullscreen #univer-container {
    width: 100vw !important;
    height: calc(100vh - 52px) !important;
}
