/* 華文管理系統 - 自訂樣式 */

/* 滾動條樣式 */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 3px;
}

.dark ::-webkit-scrollbar-thumb {
    background: #4b5563;
}

/* Material Symbols 大小調整 */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* 頁面載入過渡 */
body {
    opacity: 1;
    transition: opacity 0.2s ease-in;
}

/* Modal 居中 */
#user-modal > div,
#role-modal > div,
#perm-modal > div,
#menu-modal > div {
    margin: auto;
}
