/* 💡 프리텐다드 폰트 불러오기 */
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.css");

/* 💡 시스템 전체 글꼴을 프리텐다드로 강제 지정 */
* {
    font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", sans-serif !important;
}


:root { --menu-bg: #ffffff; --border: #ccc; --btn-blue: #222e7c; }
/*body { font-family: 'Malgun Gothic', sans-serif; margin: 0; padding-top: 35px; background: #fff; overflow-x: hidden; } */

/* 1. Adobe Acrobat 스타일 상단 고정 메뉴 */
.acrobat-menu {
    position: fixed; top: 0; left: 0; right: 0; height: 35px;
    background: var(--menu-bg); border-bottom: 1px solid var(--border);
    display: flex; align-items: center; padding: 0 10px; z-index: 1000; font-size: 12px; gap: 15px;
}
.menu-item { cursor: pointer; color: #333; padding: 2px 5px; }
.menu-item:hover { background: #e0e0e0; }
.menu-item.active { font-weight: bold; color: #0056b3; }