/* ========================================
   Chat Fullscreen - 基礎重設與版面
   ======================================== */

/* 基礎重設 */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: var(--je-bg-primary);
    color: var(--je-text-primary);
}

*, *::before, *::after {
    box-sizing: border-box;
}

/* 隱藏裝飾元素 */
body::after, body::before,
main::after, main::before {
    display: none !important;
}

/* 主版面配置 */
main#main {
    height: calc(100vh - var(--je-header-height, var(--je-space-20, 80px))); /* 原始: 80px */
    margin-top: var(--je-header-height, var(--je-space-20, 80px)); /* 原始: 80px */
    padding: 0;
    overflow: hidden;
    background: var(--je-bg-primary);
}

/* 聊天版面 - Sidebar + Main 雙欄 */
.je-chat-layout {
    display: flex;
    height: 100%;
    width: 100%;
    position: relative;
}

/* 隱藏頁尾 */
.footer, #footer, footer {
    display: none !important;
}
