/* =========================================================
   main-pack.css - 非對稱分欄變異樣式表 (SOP 5.0 變異版) 
   ========================================================= */

/* 【四、 CSS 指紋粉碎 1：注入無用幽靈干擾類名】改變檔案 Hash 值 */
.phantom-aside-{随机字母} {
    line-height: {随机数字}px;
    display: none;
    color: rgb(0, 0, 0);
    margin-top: {随机数字}px;
}

/* 【四、 CSS 指紋粉碎 2：屬性亂序與色值多態 (混合使用 HEX 與 RGB)】 */
.nav-vertical a {
    border-bottom-color: rgb(241, 245, 249); /* RGB 寫法 */
    letter-spacing: 0.5px;
    transition: all 0.25s ease-in-out;
}

.list-group {
    background-color: #ffffff; /* HEX 寫法 */
    border-left-color: rgb(0, 136, 255); /* RGB 寫法 */
}

.list-group:hover .js-source-title {
    color: #0088ff; 
}

/* 自定義右側滾動條，增加代碼特徵變異 */
.panel-right::-webkit-scrollbar {
    width: 8px;
}
.panel-right::-webkit-scrollbar-track {
    background: rgb(240, 244, 248); 
}
.panel-right::-webkit-scrollbar-thumb {
    background-color: #cbd5e1; 
    border-radius: 10px;
}

/* 【四、 CSS 指紋粉碎 3：再次注入幽靈類名】 */
.ghost-split-{随机字母} {
    opacity: 0;
    position: absolute;
    right: {随机数字}px;
    visibility: hidden;
}