﻿/* ======================================= */
/* 人員維護介面專用美化樣式 */
/* 使用您指定的深灰藍配色: #3F5060 */
/* ======================================= */

/* 定義主要配色：深灰藍 (RGB 63, 80, 96) */
.cm-header-bg {
    background-color: #3F5060 !important;
    color: white !important; /* 確保白色文字生效 */
}

/* 確保頁面大標題字體加粗 */
.cm-page-title {
    font-weight: bold;
}

/* 表格標頭的排序圖示 (Open Iconic) 樣式 */
.cm-table-header th {
    /* 讓整個點擊區域看起來像一個按鈕 */
    transition: background-color 0.2s;
    cursor: pointer;
}

    .cm-table-header th:hover {
        background-color: #4b6277; /* 滑鼠懸停時輕微變亮 */
    }
