@charset "UTF-8";

        :root {
            --pc-accent: #0ea5e9;
            /* 하늘색 */
        }

        /* 최소 스타일 툴바 — 좌측 아이콘, 우측 제목 */
        .toolbar {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 4px;
            padding: 10px 16px;
            background: var(--pc-accent);
            color: #fff;
            border: none;
            border-radius: 4px;
            /* 박스 radius 제거 */
            font-family: system-ui, -apple-system, "Noto Sans KR", sans-serif;
        }

        .toolbar_icon {
            width: 20px;
            height: 20px;
            display: grid;
            place-items: center;

            color: #fff;
        }

        .toolbar_icon svg {
            width: 20px;
            height: 20px;
            stroke: #fff;
            fill: none;
            stroke-width: 1.8;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .toolbar_title {
            font-size: 15px;
            font-weight: 800;
            letter-spacing: -.2px
        }

        @media (max-width:480px) {
            .toolbar {
                padding: 5px 14px;
            padding: 10px 16px;
			margin-left:5px;margin-right:5px;
				
            }

            .toolbar_icon {
                width: 20px;
                height: 20px
            }

            .toolbar_icon svg {
                width: 20px;
                height: 20px
            }

            .toolbar_title {
                font-size: 15px
            }
        }