.table-container {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    width: 100%;
    height: 100%;

    .header-content {
        display: flex;
        flex-direction: row;
        align-items: center;
        margin-bottom: 5px;
        margin-top: 5px;
        margin-left: 5px;

        .button-container {
            width: fit-content;
            padding: 0 15px;
        }
    }

    .table-content {
        display: flex;
        flex-direction: row;
        flex-shrink: 0;
        width: 100%;
        height: fit-content;

        .table-item {
            display: flex;
            flex-direction: column;
            flex-shrink: 0;
            width: fit-content;
            min-width: 30px;

            :root {
                --table-text-padding-left-right: 5px;
            }

            .table-common {
                display: flex;
                flex-direction: row;
                align-items: center;
                flex-shrink: 0;
                padding: 0 var(--table-text-padding-left-right);
                min-height: 30px;
                border-bottom: 1px solid rgba(0, 0, 0, 0.1);
                width: calc(100% - calc(var(--table-text-padding-left-right) * 2));

                .text {
                    font-size: 8px;
                    font-weight: bold;
                    color: #000000;
                    letter-spacing: 0.04em;
                }
            }

            .table-header {
                @extend .table-common;
                background-color: #fafafa;

                .text {
                    font-weight: bold;
                }
            }

            .table-content {
                @extend .table-common;
                background-color: #FFFFFF;

                .text {
                    font-size: 7px;
                    font-weight: 400;
                    color: #111111;
                }
            }
        }
    }

    .page-info-box {
        display: flex;
        flex-direction: row;
        align-items: center;
        margin-top: 5px;

        .omit-text {
            font-size: 7px;
            font-weight: 400;
            color: #111111;
            letter-spacing: 0.04em;
            margin-left: 8px;
        }

        .page-info-item {
            padding: 3px 6px;
            border: 1px solid rgba(0, 0, 0, 0.1);
            border-radius: 2.5px;
            margin-left: 8px;

            &:first-child {
                margin-left: 0px;
            }

            .page-info-text {
                font-size: 7px;
                font-weight: 400;
                color: #111111;
                letter-spacing: 0.04em;

                &.checked {
                    font-weight: bold;
                }
            }
        }
    }
}