/* =========================================================
   기본 토큰 / 리셋 / 기본 타이포
========================================================= */
:root {
    --bg: #f6f7fb;
    --card: #ffffff;
    --line: #e6e9f2;

    --txt: #1b2330;
    --muted: #5f6b7a;

    --acc: #fdcc63;
    --bad: #d92d20;
    --ok: #039855;

    --shadow: 0 10px 30px rgba(16, 24, 40, 0.08);

    --radius-lg: 18px;
    --radius-md: 12px;
    --radius-sm: 10px;

    --fs-11: 11px;
    --fs-12: 12px;
    --fs-13: 13px;
    --fs-14: 14px;

    --focus-ring: 0 0 0 3px rgba(253, 204, 99, 0.25);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Apple SD Gothic Neo,
        Noto Sans KR, sans-serif;
    background: var(--bg);
    color: var(--txt);
}

h1 {
    font-size: 20px;
    margin: 0 0 14px;
}

/* =========================================================
   Header
========================================================= */

.siteHeader {
    border-bottom: 1px solid var(--line);
    background: var(--card);
}

.headerInner {
    max-width: 1920px;
    margin: 0 auto;
    padding: 16px 30px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.headerBrand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.headerLogo {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.logo {
    font-size: 16px;
    font-weight: 700;
}

.systemName {
    font-size: 13px;
    color: var(--muted);
}

.headerVersion {
    font-size: 12px;
    color: var(--muted);
}


/* =========================================================
   System Status
========================================================= */

.systemStatus {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--muted);
}

.statusDot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
}


/* =========================================================
   Order Bar
========================================================= */

.orderBar {
    background: #ffffff;
    border-bottom: 1px solid var(--line);
}

.orderInner {
    max-width: 1920px;
    margin: 0 auto;
    padding: 10px 30px;
}

.orderLine {
    display: flex;
    align-items: center;
    gap: 6px;

    font-size: 13px;
    color: var(--muted);
}

.orderLabel {
    font-weight: 600;
}

.orderNumber {
    font-weight: 700;
    color: var(--txt);
}

.orderDivider {
    margin: 0 6px;
    color: var(--line);
}

.draftDivider {
    color: var(--muted);
}


/* =========================================================
   Footer
========================================================= */

.footer {
    padding: 20px;
    border-top: 1px solid var(--line);
}

.footerInner {
    max-width: 1920px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--muted);
}

.footerRight {
    text-align: right;
}