/* 모든 업무 화면에서 공통으로 사용하는 사내 시스템 링크 바 */
.internal-system-bar {
    position: sticky;
    top: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 38px;
    box-sizing: border-box;
    padding: 6px max(14px, env(safe-area-inset-right)) 6px max(14px, env(safe-area-inset-left));
    color: #eaf3ff;
    background: #0b3b6f;
    border-bottom: 1px solid #1c5a96;
    box-shadow: 0 1px 4px rgba(8, 38, 70, .18);
    font-family: inherit;
}

.internal-system-bar__label {
    flex: 0 0 auto;
    margin-right: 4px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: -.02em;
    white-space: nowrap;
}

.internal-system-bar__links {
    display: flex;
    flex: 1 1 auto;
    gap: 6px;
    overflow-x: auto;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
}

.internal-system-bar__link {
    flex: 0 0 auto;
    padding: 4px 9px;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 5px;
    color: #fff;
    background: rgba(255, 255, 255, .08);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.25;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color .15s ease, border-color .15s ease;
}

.internal-system-bar__link:hover,
.internal-system-bar__link:focus-visible {
    color: #fff;
    background: #1769aa;
    border-color: #9bceff;
    outline: none;
}

.internal-system-bar__link[aria-current="page"] {
    background: #fff;
    border-color: #fff;
    color: #0b3b6f;
}

@media print {
    .internal-system-bar { display: none !important; }
}

@media (max-width: 560px) {
    .internal-system-bar { gap: 7px; padding-top: 5px; padding-bottom: 5px; }
    .internal-system-bar__label { font-size: 11px; }
    .internal-system-bar__link { padding: 4px 7px; font-size: 11px; }
}
