/* 핵심부품 신뢰성 통합 검증 시스템 커스텀 스타일 */
@font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css');
}

:root {
    font-family: 'Pretendard', system-ui, -apple-system, sans-serif;
}

body {
    background-color: #f7f9fb;
    color: #191c1e;
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    display: inline-block;
    vertical-align: middle;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.primary-gradient {
    background: linear-gradient(135deg, #00346f 0%, #004a99 100%);
}

/* 스크롤바 커스텀 */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: #c2c6d3;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: #737783;
}
