/* =========================================================================
   Global Optimization CSS
   
   이 CSS 파일은 HTML 페이지들에 산재해 있던 공통된 inline style(style="..." 속성)을
   대체하기 위해 생성된 유틸리티 클래스 모음입니다.
========================================================================= */

/* 1. 텍스트 컬러 (자주 사용되는 #ffffff, #090058 등) */
.text-white-opt {
    color: #ffffff !important;
}

.text-primary-dark-opt {
    color: #090058 !important;
}

/* 2. 링크 텍스트 (Link Texts) */
.a-inherit-opt {
    color: inherit !important;
    text-decoration: none !important;
}

.a-premium-accent-opt {
    color: var(--premium-accent) !important;
    text-decoration: none !important;
}

/* 3. 폰트 사이즈 */
.font-size-18-opt {
    font-size: 18px !important;
}

.font-size-19-opt {
    font-size: 19px !important;
}

/* 4. 구조 및 여백 (Layout & Margins) */
.text-center-mb20-opt {
    text-align: center !important;
    margin-bottom: 20px !important;
}

.margin-top-20-opt {
    margin-top: 20px !important;
}

.heading-neumo-opt {
    margin-top: 2rem !important;
    margin-bottom: 1rem !important;
    color: var(--neumo-text) !important;
}

/* 5. 배경 및 캔버스 (Backgrounds & Canvas) */
.canvas-bg-opt {
    position: fixed !important;
    inset: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    z-index: -2 !important;
    pointer-events: none !important;
}

/* 6. 디스플레이 상태 (Display) */
.svg-hidden-opt {
    display: none !important;
}

/* 7. 테이블 및 기타 엘리먼트 요소 */
.td-bordered-opt {
    padding: 12px !important;
    border: 1px solid #ddd !important;
}

.span-highlight-opt {
    background: rgba(111, 95, 255, 0.1) !important;
    color: var(--premium-accent) !important;
}
