﻿.page-wrapper {
    height: calc(100vh - 90px);
    display: flex;
    flex-direction: column;
}

/* 整頁 */
.receive-page {
    height: calc(100vh - 90px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* header */
.page-header {
    padding-bottom: 16px;
}

/* 外層內容卡片 */
.content-wrapper {
    padding: 16px;
    height: 100%;
    box-sizing: border-box;
    background: #f5f5f5;
}

/* table 容器 */
.table-container {
    padding: 16px;
    height: 100%;
    box-sizing: border-box;
}

/* table 區 */
.table-wrapper {
    margin-top: 16px;
}

/* tabs 與 table 間距 */
.mud-tabs {
    margin-top: 16px;
}


/* scroll 在這 */
.table-scroll {
    flex: 1;
    overflow: auto;
    margin-top: 16px;
}

/* 外層卡片 */
.receive-card {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #f5f5f5;
}


/* table 區 */
.table-area {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: scroll;
}


/* table root */
.table-root {
    flex: 1;
}

