﻿/* 自定義: 參考回收業專案 */

.FormCategory {
    background-color: #eee;
    text-align: center;
    padding: 10px;
    margin-bottom: 5px;
    font-weight: bold;
}

.FormCategoryLeft {
    background-color: #eee;
    text-align: left;
    padding: 10px;
    margin-bottom: 5px;
    font-weight: bold;
}

.FormInfo {
    background-color: #dbe9f8;
    text-align: center;
    padding: 10px;
    margin-bottom: 5px;
    font-weight: bold;
}

.hr-line-dashed {
    border-top: 1px dashed #e7eaec;
    color: #eee;
    background-color: #eee;
    height: 1px;
    margin: 20px 0;
}

/* 自定義: 在DIV中置中TABLE 
    Ref: https://stackoverflow.com/questions/7059394/how-to-position-a-table-at-the-center-of-div-horizontally-vertically
*/
.CUST_CENTER_TABLE_DIV {
    display: flex;
    justify-content: center;
}

.CUST_CENTER_TABLE {
    align-self: center;
}