GNU/skin/board/outline_target/style.view.css
/* view.skin.php 전용 스타일 */

html, body {
    background: #1a2436 !important;
}

::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: #111827; }
::-webkit-scrollbar-thumb {
    background: #1e293b;
    border-radius: 6px;
    border: 2px solid #111827;
}
::-webkit-scrollbar-thumb:hover {
    background: #00f2ff;
    box-shadow: 0 0 8px rgba(0,242,255,0.5);
}
* {
    scrollbar-width: thin;
    scrollbar-color: #1e293b #111827;
}

#VIEW {
    background: #1a2436;
    color: #e2e8f0;
    width: 100%;
    margin: 0 auto;
    min-height: auto;
    padding-bottom: 30px;
}

#VIEW .Board-Info-Header,
#VIEW .Header-Main-Section,
#VIEW .Extra-Category-Area,
#VIEW .View-Option-Area,
#VIEW .View-Content,
#VIEW .Additional-Code-Area,
#VIEW .Work-Memo-View-Area,
#VIEW .View-Attached-Data,
#VIEW .View-Tag-Area,
#VIEW .Post-Navigation,
#VIEW .View-Bottom-Control {
    margin-left: 120px;
    margin-right: 120px;
}

#VIEW .Board-Info-Header {
    margin-top: 20px;
    padding: 22px 26px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    background: rgba(15,23,42,0.75);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#VIEW .terminal-label { font-size: 0.72rem; letter-spacing: 2px; color: #93c5fd; font-weight: 700; }
#VIEW .board-title { font-size: 1.3rem; margin-top: 6px; font-weight: 800; color: #fff; }
#VIEW .board-title-icon { color: #38bdf8; margin-right: 8px; }

#VIEW .Btns-Right { display: flex; gap: 8px; }

#VIEW .Btns-Right button,
#VIEW .Admin-Control button,
#VIEW .List-Btn-Footer,
#VIEW .code-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.82rem;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(2,6,23,0.65);
    color: #e2e8f0;
}

#VIEW .Btns-Right button:hover,
#VIEW .Admin-Control button:hover,
#VIEW .List-Btn-Footer:hover,
#VIEW .code-action-btn:hover {
    border-color: #38bdf8;
    color: #38bdf8;
    box-shadow: 0 0 16px rgba(56,189,248,0.25);
    transform: translateY(-1px);
}

#VIEW .Write-Btn {
    background: #00f2ff !important;
    color: #000 !important;
    border-color: #00f2ff !important;
    font-weight: 700;
}

#VIEW .Header-Main-Section {
    margin-top: 16px;
    padding: 24px 10px 10px;
    text-align: center;
}

#VIEW .Header-Main-Section h1 { margin: 0 0 10px; font-size: 2rem; color: #fff; }
#VIEW .wr-datetime { color: #94a3b8; font-size: 0.9rem; }
#VIEW .datetime-icon { color: #38bdf8; margin-right: 6px; }

#VIEW .Extra-Category-Area,
#VIEW .View-Option-Area,
#VIEW .View-Attached-Data,
#VIEW .View-Tag-Area,
#VIEW .Additional-Code-Area,
#VIEW .Work-Memo-View-Area,
#VIEW .View-Content {
    padding: 14px 16px;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 8px;
    background: rgba(15,23,42,0.72);
    margin-top: 14px;
}

#VIEW .section-title-row {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 800;
    color: #38bdf8;
    margin-bottom: 10px;
}

#VIEW .meta-item-grid,
#VIEW .option-item-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 8px;
}

#VIEW .meta-item,
#VIEW .option-chip {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 8px;
    min-height: 48px;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 6px;
    background: rgba(2,6,23,0.5);
    padding: 7px 10px;
}

#VIEW .ca-tag-item i { color: #38bdf8; }

#VIEW .info-link {
    text-decoration: none;
    color: inherit;
    transition: border-color .2s ease, box-shadow .2s ease, color .2s ease;
}

#VIEW .meta-item:hover,
#VIEW .option-chip:hover,
#VIEW .theme-chip:hover,
#VIEW .tag-item:hover,
#VIEW .related-list a:hover,
#VIEW .link-item-card:hover,
#VIEW .nav-meta-chip:hover {
    border-color: #38bdf8;
    box-shadow: 0 0 12px rgba(56,189,248,0.22);
}

#VIEW .item-label,
#VIEW .option-chip-label {
    font-size: 0.72rem;
    color: #93c5fd;
    font-weight: 700;
}

#VIEW .item-value,
#VIEW .option-chip-value {
    font-size: 0.82rem;
    color: #e2e8f0;
    font-weight: 700;
}

#VIEW .item-value.value-green { color: #86efac; }
#VIEW .item-value.value-blue { color: #7dd3fc; }
#VIEW .item-value.value-yellow { color: #facc15; }
#VIEW .item-value.value-red { color: #fca5a5; }
#VIEW .item-value.value-status-progress { color: #86efac; }
#VIEW .item-value.value-status-done { color: #fca5a5; }

#VIEW .View-Body-Inner { margin-top: 6px; }

#VIEW #bo_v_img img,
#VIEW #bo_v_con img {
    max-width: 100%;
    height: auto !important;
    border-radius: 6px;
}

#VIEW #bo_v_con {
    margin-top: 12px;
    line-height: 1.8;
    word-break: break-word;
}

#VIEW .code-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

#VIEW .code-title { color: #38bdf8; font-size: 0.82rem; font-weight: 800; }
#VIEW .code-actions { display: flex; gap: 8px; }

#VIEW .code-body {
    margin: 0;
    max-height: 360px;
    overflow: auto;
    background: rgba(2,6,23,0.8);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 6px;
    padding: 14px;
    line-height: 1.6;
    font-size: 0.82rem;
}

#VIEW .work-memo-title { font-size: 0.82rem; font-weight: 800; color: #38bdf8; margin-bottom: 8px; }
#VIEW .memo-clean-badge { display: inline-flex; gap: 6px; margin-bottom: 8px; font-size: 0.72rem; color: #fbbf24; }
#VIEW .work-memo-content { line-height: 1.7; font-size: 0.85rem; }

#VIEW .related-list { list-style: none; margin: 0; padding: 0; }
#VIEW .related-list li + li { margin-top: 8px; }
#VIEW .related-list a {
    text-decoration: none;
    color: #e2e8f0;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 6px;
    padding: 8px 10px;
    background: rgba(2,6,23,0.45);
}
#VIEW .related-prev-title { margin-top: 14px; }
#VIEW .related-subject { word-break: break-word; }
#VIEW .related-date { color: #94a3b8; font-size: 0.76rem; white-space: nowrap; }

#VIEW .View-Tag-Area { display: flex; flex-wrap: wrap; gap: 8px; }
#VIEW .tag-item {
    text-decoration: none;
    color: #93c5fd;
    border: 1px solid rgba(56,189,248,0.4);
    border-radius: 999px;
    padding: 4px 10px;
    font-size: 0.78rem;
}

#VIEW .trade-tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

#VIEW .trade-tag-link {
    text-decoration: none;
    color: #93c5fd;
    border: 1px solid rgba(56,189,248,0.4);
    border-radius: 999px;
    padding: 4px 10px;
    font-size: 0.78rem;
    background: rgba(2,6,23,0.45);
}

#VIEW .trade-tag-link:hover {
    color: #67e8f9;
    border-color: #22d3ee;
    box-shadow: 0 0 12px rgba(34,211,238,0.3);
    transform: translateY(-1px);
}

#VIEW .trade-tag-empty {
    color: #94a3b8;
    font-size: 0.82rem;
}

#VIEW .data-item {
    text-decoration: none;
    color: #e2e8f0;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 6px;
    padding: 10px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    background: rgba(2,6,23,0.45);
}
#VIEW .file-item { border-color: #86efac; }
#VIEW .file-item:hover { border-color: #22c55e; box-shadow: 0 0 14px rgba(34,197,94,0.28); }
#VIEW .data-item + .data-item { margin-top: 8px; }
#VIEW .data-info { display: flex; align-items: center; gap: 10px; min-width: 0; }
#VIEW .data-name { word-break: break-all; }
#VIEW .data-description { display: block; color: #94a3b8; font-size: 0.76rem; margin-top: 2px; }
#VIEW .data-meta { color: #93c5fd; font-size: 0.76rem; white-space: nowrap; }
#VIEW .links-under-files { margin-top: 14px; }

#VIEW .Post-Navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 18px;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 8px;
    overflow: hidden;
    background: rgba(15,23,42,0.72);
}

#VIEW .Post-Navigation a,
#VIEW .nav-empty { padding: 14px 16px; }

#VIEW .Post-Navigation a {
    text-decoration: none;
    color: inherit;
    transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

#VIEW .Post-Navigation a:hover {
    background: rgba(2,6,23,0.62);
    border-color: #38bdf8;
    box-shadow: inset 0 0 0 1px rgba(56,189,248,0.4);
}

#VIEW .prev-link,
#VIEW .prev-empty { border-right: 1px solid rgba(255,255,255,0.12); }

#VIEW .next-link,
#VIEW .next-empty { text-align: right; }

#VIEW .nav-label { font-size: 0.72rem; color: #38bdf8; font-weight: 700; display: block; margin-bottom: 6px; }
#VIEW .nav-subject { margin: 0 0 8px; font-size: 0.9rem; color: #fff; }

#VIEW .nav-meta-wrap { display: flex; flex-wrap: wrap; gap: 6px; }
#VIEW .next-link .nav-meta-wrap { justify-content: flex-end; }
#VIEW .nav-meta-chip {
    display: inline-block;
    font-size: 0.7rem;
    color: #cbd5e1;
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 999px;
    padding: 2px 8px;
    background: rgba(2,6,23,0.45);
}

#VIEW .View-Bottom-Control {
    margin-top: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

#VIEW .Admin-Control { display: flex; gap: 8px; flex-wrap: wrap; }

@media (max-width: 1280px) {
    #VIEW .Board-Info-Header,
    #VIEW .Header-Main-Section,
    #VIEW .Extra-Category-Area,
    #VIEW .View-Option-Area,
    #VIEW .View-Content,
    #VIEW .Additional-Code-Area,
    #VIEW .Work-Memo-View-Area,
    #VIEW .View-Attached-Data,
    #VIEW .View-Tag-Area,
    #VIEW .Post-Navigation,
    #VIEW .View-Bottom-Control {
        margin-left: 24px;
        margin-right: 24px;
    }
}

@media (max-width: 820px) {
    #VIEW .Board-Info-Header { flex-direction: column; align-items: flex-start; gap: 10px; }
    #VIEW .Btns-Right { flex-wrap: wrap; }
    #VIEW .Post-Navigation { grid-template-columns: 1fr; }
    #VIEW .prev-link,
    #VIEW .prev-empty { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.12); }
    #VIEW .next-link,
    #VIEW .next-empty { text-align: left; }
    #VIEW .next-link .nav-meta-wrap { justify-content: flex-start; }
    #VIEW .View-Bottom-Control { flex-direction: column; align-items: stretch; }
}