GNU/skin/board/work/style.view.css
:root {
	--view-bg: #0b0d12;
	--content-black: #0c1224;
	--border-color: rgba(255, 255, 255, 0.1);
	--accent-blue: #38bdf8;
	--accent-purple: #818cf8;
	--accent-gold: #fbbf24;
	--text-main: #f1f5f9;
	--text-dim: #94a3b8;
	--card-bg: rgba(30, 41, 59, 0.5);
}

::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: #090a0f; }
::-webkit-scrollbar-thumb { background: #1e293b; border-radius: 5px; border: 2px solid #090a0f; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-blue); }

.code-body::-webkit-scrollbar { width: 6px; }
.code-body::-webkit-scrollbar-track { background: #000; }
.code-body::-webkit-scrollbar-thumb { background: #1e293b; border-radius: 5px; }
.code-body::-webkit-scrollbar-thumb:hover { background: var(--accent-blue); }

.Btns-Right button,
.Admin-Control button,
.List-Btn-Footer {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 22px;
	border-radius: 4px;
	font-size: 0.85rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	border: 1px solid var(--border-color);
	background: var(--card-bg);
	color: var(--text-main);
}

.Btns-Right button:hover,
.Admin-Control button:hover,
.List-Btn-Footer:hover {
	border-color: var(--accent-blue);
	color: var(--accent-blue);
	box-shadow: 0 0 15px rgba(56, 189, 248, 0.2);
	transform: translateY(-2px);
}

.Write-Btn {
	background: linear-gradient(45deg, var(--accent-blue), var(--accent-purple)) !important;
	color: #000 !important;
	border: none !important;
	font-weight: 800 !important;
}

.Post-Navigation {
	display: grid;
	grid-template-columns: 1fr 1fr;
	background: transparent;
	margin-top: 60px;
}

.Post-Navigation a {
	padding: 40px;
	text-decoration: none;
	color: var(--text-main);
	transition: 0.3s;
	display: flex;
	flex-direction: column;
}

.Post-Navigation a:hover { background: rgba(255, 255, 255, 0.02); }

.nav-label {
	font-size: 0.75rem;
	color: var(--accent-blue);
	font-weight: 700;
	display: block;
	margin-bottom: 8px;
	text-transform: uppercase;
}

.nav-subject {
	font-size: 1.1rem;
	font-weight: 600;
	margin: 0;
}

.prev-link,
.prev-empty {
	background: #0e1427;
	border: 1px solid #313866;
	border-left: 0px;
	border-radius: 10px;
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;
	margin-right:20px;
}

.next-link,
.next-empty {
	background: #0e1427;
	text-align: right;
	border: 1px solid #313866;
	border-radius: 10px;
	border-top-right-radius: 0px;
	border-bottom-right-radius: 0px;
	border-right: 0px;
	margin-left:20px;
}

.nav-empty {
	padding: 40px;
	color: #334155;
}

.Extra-Category-Area {
	display: flex;
	gap: 10px;
	align-items: center;
	justify-content: flex-end;
	border-bottom: 1px solid var(--border-color);
	margin-bottom: 30px;
	padding: 0 0px;
}

#bo_v_con {	padding:30px 50px; }
#bo_v_con a { color:#fff; }
#bo_v_con a:hover { color:#86b9e9; }

.status-tag {
	margin-right: auto !important;
	background: rgba(56, 189, 248, 0.1);
	color: var(--accent-blue);
	border: 1px solid rgba(56, 189, 248, 0.3);
	border-bottom:0px;
	padding: 5px 30px;
	border-radius: 4px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 1px;
}

.ca-tag-item {
	background: rgba(129, 140, 248, 0.1);
	color: var(--accent-purple);
	border: 1px solid rgba(129, 140, 248, 0.3);
	border-bottom:0px;
	padding: 5px 30px;
	border-radius: 4px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	font-size: 0.85rem;
	font-weight: 600;
	white-space: nowrap;
}

.top-badge {
	background: rgba(251, 191, 36, 0.1) !important;
	color: var(--accent-gold) !important;
	border-color: rgba(251, 191, 36, 0.4) !important;
}

.label-badge {
	color: #ff0000 !important;
	border-color: rgba(251, 36, 36, 0.4) !important;
	background: rgba(255, 0, 0, 0.2) !important;
	padding: 5px 30px;
}

.ca-link,
.tag-item {
	text-decoration: none;
	position: relative;
	transition: color 0.2s ease, border-color 0.2s ease;
}

.ca-link::after,
.tag-item::after {
	content: "";
	position: absolute;
	left: 8px;
	right: 8px;
	bottom: 2px;
	height: 1px;
	background: currentColor;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.2s ease;
	opacity: 0.8;
}

.ca-link:hover,
.tag-item:hover {
	border-color: var(--accent-blue);
	color: var(--accent-blue);
}

.ca-link:hover::after,
.tag-item:hover::after {
	transform: scaleX(1);
}

.View-Tag-Area {
	margin-top: 30px;
	padding: 0 10px;
    text-align:center;
}

.Ver {
	font-size:1rem;
	text-align:right;
	padding-right:40px;
	color:#d2ffe9;
}

.tag-item {
	color: var(--text-dim);
	border: 1px solid rgba(148, 163, 184, 0.35);
	border-radius: 4px;
	padding: 5px 20px;
	font-size: 0.8rem;
	line-height: 1.4;
    margin:0px 5px;
}

#VIEW {
	background-color: var(--view-bg);
	color: var(--text-main);
	font-family: 'Pretendard', sans-serif;
	width: 100%;
	margin: 0 auto;
	overflow: hidden;
	position: relative;
	min-height: 100vh;
}

/* 프로젝트 타이틀 섹션 */
section { 
	background:#1e2e48; border: 1px solid #1e2e48; border-top:0px; border-radius: 5px; border-top-right-radius:0px; border-top-left-radius:0px; 
	text-align: center; 
	margin:0px 10px; 
}
section ul {  
	text-align: left;
	padding: 20px; 
}
section ul li {
	background:#06142c;
	border: 1px solid #2b3950; border-radius: 5px; 
	text-align: center;
}
section ul li p:first-child	{ 
	background:#030f24;
	border-top-right-radius:10px; border-top-left-radius:10px;
	border-bottom: 1px solid #2b3950;
	font-size: 1.2rem; font-weight: 700; text-align: left;
	text-align: center;
	margin:0px 0px 10px 0px; padding:10px 20px; 
}
section ul li p:nth-child(2) { 
	width:100% !important;
	height: 170px;
	line-height: 25px;;
	font-size: 1rem; 
	font-weight: 300;
	text-align: left;
	padding:10px 150px 20px 150px; 
	overflow-y: auto;  /* 세로 스크롤 자동 생성 (내용 많을 때만) */
    overflow-x: hidden;
}
section ul li p:nth-child(3) { 
	width: 100% !important;
	border-top: 1px solid #2b3950;
	text-align: right;
	padding: 10px 20px 10px 20px;
}
section button {
	background: #030f24;
	border: 1px solid #1b2b44; border-radius: 4px;
	color: #d2ffe9;
	padding: 7px 14px;
}
section button:hover {
	border-color: var(--accent-blue);
	color: var(--accent-blue);
	background: #06142c;
}

.Board-Info-Header,
.Header-Main-Section,
.Extra-Category-Area,
.View-Tag-Area,
.View-Content,
.View-Attached-Data,
.Post-Navigation,
.View-Bottom-Control {
	position: relative;
	z-index: 1;
}

.Board-Info-Header {
	padding: 30px 40px;
	background: #051633;
	border-bottom: 1px solid var(--border-color);
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.terminal-label {
	font-family: 'Orbitron';
	font-size: 0.8rem;
	color: var(--accent-blue);
	font-weight: 700;
	letter-spacing: 2px;
}

.board-title {
	font-size: 1.6rem;
	font-weight: 800;
	color: #fff;
	margin-top: 5px;
}

.board-title-icon {
	color: var(--accent-blue);
	margin-right: 10px;
}

.Header-Main-Section {
	padding: 60px 40px 30px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.Header-Main-Section h1 {
	font-size: 2rem;
	font-weight: 800;
	margin-bottom: 15px;
	color: #fff;
	line-height: 1.2;
}

.wr-datetime {
	color: var(--text-main);
	font-size: 0.95rem;
}

.datetime-icon {
	margin-right: 8px;
	color: var(--accent-blue);
}

.wr-project {
	margin-top: 10px;
	color: var(--accent-purple);
	font-size: 3rem;
	font-weight: 600;
	letter-spacing: 0.5px;
}

.View-Content {
	background-color: var(--content-black);
	margin: 0 50px 10px;
	padding: 80px 60px;
	line-height: 1.8;
	border-radius: 5px;
	border: 1px solid rgba(56, 189, 248, 0.3);
	box-shadow: 0 10px 30px rgba(0,0,0,0.5);
	backdrop-filter: blur(5px);
	font-size: 16px;
}

.Additional-Code-Area {
	margin-top: 40px;
	background: #000;
	border-radius: 4px;
	border: 1px solid rgba(129, 140, 248, 0.3);
	overflow: hidden;
}

.code-header {
	background: rgba(129, 140, 248, 0.1);
	padding: 10px 20px;
	font-size: 0.8rem;
	color: var(--accent-purple);
	font-weight: 700;
	border-bottom: 1px solid rgba(129, 140, 248, 0.2);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.code-title {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.code-actions {
	display: inline-flex;
	gap: 8px;
}

.code-action-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	border: 1px solid rgba(129, 140, 248, 0.4);
	background: rgba(129, 140, 248, 0.08);
	color: #dbeafe;
	border-radius: 4px;
	font-size: 0.75rem;
	font-weight: 700;
	padding: 5px 10px;
	cursor: pointer;
	transition: all 0.2s ease;
}

.code-action-btn:hover {
	border-color: var(--accent-blue);
	color: var(--accent-blue);
}

.code-body {
	padding: 20px;
	font-family: 'Fira Code', monospace;
	font-size: 0.9rem;
	color: #e2e8f0;
	white-space: pre-wrap;
	max-height: 500px;
	overflow-y: auto;
}

.Work-Line-View-Area {
	margin-top: 30px;
	border: 1px solid rgba(56, 189, 248, 0.25);
	border-radius: 5px;
	background: rgba(15, 23, 42, 0.45);
	overflow: hidden;
}

.work-line-title,
.work-memo-title {
	padding: 10px 16px;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.5px;
	color: var(--accent-blue);
	background: rgba(56, 189, 248, 0.08);
	border-bottom: 1px solid rgba(56, 189, 248, 0.2);
	display: flex;
	align-items: center;
	gap: 8px;
}

.work-line-list {
	list-style: none;
	background: #030719;
	margin: 0;
	padding: 0;
	max-height: 500px;
	overflow-y: auto;
}

.work-line-list::-webkit-scrollbar {
	width: 8px;
}

.work-line-list::-webkit-scrollbar-track {
	background: rgba(2, 6, 23, 0.9);
}

.work-line-list::-webkit-scrollbar-thumb {
	background: rgba(56, 189, 248, 0.35);
	border-radius: 5px;
	border: 1px solid rgba(56, 189, 248, 0.25);
}

.work-line-list::-webkit-scrollbar-thumb:hover {
	background: rgba(56, 189, 248, 0.6);
}

.work-line-item {
	padding: 14px 16px;
	border-bottom: 1px dashed rgba(148, 163, 184, 0.25);
}

.work-line-item:last-child {
	border-bottom: 0;
}

.work-line-time {
	font-size: 0.78rem;
	color: var(--accent-purple);
	margin-bottom: 6px;
	font-weight: 600;
}

.relay-line-title {
	display: flex;
	background: #051633;
	color: #00d9ff;
	font-size: 20px;
	font-weight: 700;
	padding:10px 20px;
}

.relay-line-title .relay-time {
	margin-left: auto; /* 왼쪽 여백을 자동으로 최대 확보 */
  	width: fit-content; /* 내용물 크기에 맞게 조절 (필수) */
  	color: #999cc2;
	font-size: 15px;
}

.work-line-content {
	font-size: 0.92rem;
	line-height: 1.65;
	color: var(--text-main);
	word-break: break-word;
}

.Work-Memo-View-Area {
	margin-top: 20px;
	border: 1px solid rgba(129, 140, 248, 0.3);
	border-radius: 5px;
	background: rgba(15, 23, 42, 0.45);
	overflow: hidden;
}

.memo-clean-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 12px 16px 0;
	padding: 4px 10px;
	font-size: 0.75rem;
	font-weight: 700;
	color: #fca5a5;
	border: 1px solid rgba(248, 113, 113, 0.4);
	background: rgba(127, 29, 29, 0.25);
	border-radius: 999px;
}

.work-memo-content {
	padding: 14px 16px 16px;
	font-size: 0.92rem;
	line-height: 1.7;
	color: var(--text-main);
	word-break: break-word;
}

.Work-Memo-View-Area.is-cleaned .work-memo-content {
	opacity: 0.45;
	text-decoration: line-through;
	text-decoration-color: rgba(248, 113, 113, 0.7);
}

.tag-item-version {
	color: var(--accent-blue);
	border-color: rgba(56, 189, 248, 0.45);
	background: rgba(56, 189, 248, 0.08);
}

.View-Attached-Data {
	margin: 20px 50px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.data-item {
	background: rgba(30, 41, 59, 0.3);
	border: 1px solid var(--border-color);
	padding: 15px 25px;
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	transition: 0.3s;
	text-decoration: none;
	color: var(--text-main);
}

.data-item:hover {
	border-color: var(--accent-blue);
	background: rgba(56, 189, 248, 0.05);
	box-shadow: 0 0 15px rgba(56, 189, 248, 0.15);
	transform: scale(1.01);
}

.data-info { display: flex; align-items: center; gap: 15px; }
.data-info i { color: var(--accent-blue); font-size: 1.1rem; }
.data-name { font-weight: 500; font-size: 0.95rem; }
.data-meta { font-size: 0.8rem; color: var(--text-dim); }
.link-arrow-icon { margin-left: 5px; font-size: 10px; }
.meta-size { margin-right: 10px; }
.meta-eye-icon { font-size: 10px; }
.data-description { display: block; font-size: 0.8rem; color: var(--accent-blue); opacity: 0.8; margin-top: 4px; }

.View-Bottom-Control {
	padding: 40px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

@media (max-width: 1200px) {
	.View-Content,
	.View-Attached-Data,
	.Post-Navigation,
	.Extra-Category-Area,
	.View-Tag-Area {
		margin-left: 50px;
		margin-right: 50px;
	}
}