.table_top {
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 16px;
}

    .table_top div {
        width: fit-content;
    }

.table_bottom {
    flex-direction: row;
    justify-content: space-between;
    margin-top: 20px;
}

.table_btn_wrap {
    width: fit-content;
    flex-direction: row;
}

    .table_btn_wrap button {
        width: fit-content;
        min-width: 140px;
    }

@media (max-width: 768px) {
    .table_bottom {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        align-content: center;
        margin-top: 20px;
    }

    .table_btn_wrap {
        width: fit-content;
        flex-direction: row;
        justify-content: flex-end;
        margin-top: 16px;
    }

        .table_btn_wrap button {
            width: fit-content;
        }
}

@media (max-width: 576px) {
    .table_top div {
        width: fit-content;
        font-size: 14px;
    }

    .table_bottom {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        align-content: center;
        margin-top: 20px;
    }

    .table_btn_wrap {
        width: 100%;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        margin-top: 16px;
    }

        .table_btn_wrap button {
            font-size: 13px;
            width: fit-content;
            min-width: 80px;
        }
}
