OLDBOY/skin/board/daily/style.view.css
:root {
	--view-bg: #020617;
	--content-black: rgba(5, 5, 5, 0.85);
	--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: 10px; 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: 10px; }
.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: 5px;
	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;
	border-top: 1px solid var(--border-color);
	border-bottom: 1px solid var(--accent-blue);
}

.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 {
	border-right: 1px solid var(--border-color);
}

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

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

.Extra-Category-Area {
	margin: 24px 50px;
	padding: 14px;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, rgba(56, 189, 248, 0.08), rgba(129, 140, 248, 0.05));
	border: 1px solid rgba(148, 163, 184, 0.22);
	border-radius: 7px;
	backdrop-filter: blur(6px);
}

.meta-section,
.View-Option-Area {
	display: block;
}

.section-title-row {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	color: var(--accent-blue);
	padding: 5px 10px;
	border-radius: 999px;
	border: 1px solid rgba(56, 189, 248, 0.35);
	background: rgba(2, 6, 23, 0.45);
	margin-bottom: 10px;
}

.meta-item-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 10px;
}


.meta-item {
	background: rgba(2, 6, 23, 0.5);
	border: 1px solid rgba(148, 163, 184, 0.28);
	border-radius: 6px;
	padding: 9px 12px;
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	align-items: center;
	gap: 10px;
	min-height: 64px;
	line-height: 1.2;
}

.item-label {
	font-size: 0.76rem;
	font-weight: 800;
	color: #cbd5e1;
	letter-spacing: 0.3px;
	padding: 3px 8px;
	border-radius: 999px;
	border: 1px solid rgba(148, 163, 184, 0.35);
	background: rgba(30, 41, 59, 0.5);
}

.item-value {
	font-size: 0.84rem;
	font-weight: 700;
	color: #e2e8f0;
	word-break: break-word;
	line-height: 1.4;
}

.status-tag {
	background: rgba(56, 189, 248, 0.16) !important;
	color: var(--accent-blue) !important;
	border: 1px solid rgba(56, 189, 248, 0.45) !important;
	padding: 10px 12px;
	border-radius: 6px;
}

.ca-tag-item {
	background: transparent;
	color: inherit;
	border: 0;
	padding: 0;
	border-radius: 0;
	font-size: inherit;
	font-weight: inherit;
	white-space: normal;
	display: block;
	line-height: inherit;
}

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

.label-badge {
	color: var(--accent-gold) !important;
	border-color: rgba(251, 191, 36, 0.5) !important;
	background: rgba(251, 191, 36, 0.15) !important;
	padding: 10px 12px;
}

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

.tag-item {
	position: relative;
}

.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);
	box-shadow: 0 8px 20px rgba(56, 189, 248, 0.18);
}

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

.View-Option-Area {
	margin: 18px 50px;
	padding: 14px;
	border-radius: 7px;
	border: 1px solid rgba(148, 163, 184, 0.2);
	background: rgba(15, 23, 42, 0.55);
	backdrop-filter: blur(6px);
}

.option-item-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 10px;
}

.option-row-grid {
	grid-template-columns: 1fr;
}

.option-primary-area {
	border-color: rgba(56, 189, 248, 0.35);
	background: linear-gradient(135deg, rgba(56, 189, 248, 0.12), rgba(15, 23, 42, 0.55));
}

.option-secondary-area {
	border-color: rgba(129, 140, 248, 0.35);
	background: linear-gradient(135deg, rgba(129, 140, 248, 0.12), rgba(15, 23, 42, 0.55));
}

.option-chip {
	max-width: 100%;
	padding: 9px 12px;
	min-height: 64px;
	border-radius: 6px;
	background: rgba(2, 6, 23, 0.58);
	border-color: rgba(148, 163, 184, 0.28);
	color: var(--text-main);
	gap: 10px;
	overflow: visible;
	text-overflow: initial;
	white-space: normal;
	transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
	display: grid;
	grid-template-columns: 18px auto minmax(0, 1fr);
	align-items: center;
}

.option-chip:hover {
	border-color: var(--accent-blue);
	box-shadow: 0 8px 18px rgba(56, 189, 248, 0.18);
}

.option-chip i {
	font-size: 0.78rem;
	opacity: 0.9;
	align-self: center;
}

.option-chip-label {
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.3px;
	color: var(--text-dim);
	padding: 3px 8px;
	border-radius: 999px;
	border: 1px solid rgba(148, 163, 184, 0.35);
	background: rgba(30, 41, 59, 0.5);
	align-self: center;
}

.option-chip-value {
	font-size: 0.84rem;
	font-weight: 600;
	line-height: 1.4;
	word-break: break-word;
	display: flex;
	align-items: center;
	min-height: 24px;
}

.option-chip-row {
	align-items: start;
}

.option-value-row {
	align-items: center;
}

.option-chip-values {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	min-height: 24px;
}

.option-value-badge {
	display: inline-flex;
	align-items: center;
	padding: 4px 9px;
	border-radius: 999px;
	font-size: 0.78rem;
	font-weight: 600;
	color: #e2e8f0;
	border: 1px solid rgba(148, 163, 184, 0.36);
	background: rgba(30, 41, 59, 0.62);
	line-height: 1.3;
}

.option-chip-week-row {
	grid-template-columns: 18px auto minmax(0, 1fr);
}

.option-calendar-area {
	border-color: rgba(129, 140, 248, 0.4);
	background: linear-gradient(135deg, rgba(15, 23, 42, 0.68), rgba(30, 41, 59, 0.35));
}

.haran-grid {
	display: flex;
	flex-wrap: nowrap;
	gap: 14px;
}

.haran-grid .haran-card {
	flex: 1 1 0;
	min-width: 0;
}

.haran-card {
	border-radius: 7px;
	border: 1px solid rgba(148, 163, 184, 0.28);
	background: linear-gradient(135deg, rgba(2, 6, 23, 0.7), rgba(30, 41, 59, 0.35));
	padding: 14px;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
	backdrop-filter: blur(6px);
	min-width: 0;
	width: 100%;
}

.haran-title {
	font-family: 'Orbitron', sans-serif;
	font-size: 0.92rem;
	font-weight: 700;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	color: #e2e8f0;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 12px;
	border-radius: 999px;
	border: 1px solid rgba(129, 140, 248, 0.45);
	background: rgba(79, 70, 229, 0.15);
	margin-bottom: 12px;
}

.haran-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 8px;
}

.haran-list-item {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 10px 12px;
	border-radius: 6px;
	border: 1px solid rgba(148, 163, 184, 0.25);
	background: rgba(15, 23, 42, 0.55);
	font-size: 0.86rem;
	line-height: 1.5;
	color: #e2e8f0;
}

.haran-list-item i {
	color: var(--accent-blue);
	font-size: 0.8rem;
	margin-top: 2px;
}

.haran-routine .haran-title,
.haran-way .haran-title,
.haran-point .haran-title,
.haran-healing .haran-title {
	border-color: rgba(56, 189, 248, 0.45);
	background: rgba(14, 116, 144, 0.25);
}

.haran-point .haran-title {
	border-color: rgba(129, 140, 248, 0.5);
	background: rgba(67, 56, 202, 0.2);
}

.haran-healing .haran-title {
	border-color: rgba(74, 222, 128, 0.45);
	background: rgba(34, 197, 94, 0.18);
}

.haran-week-wrap {
	margin-top: 14px;
}

.week-card {
	width: 100%;
}

.week-calendar {
	border-radius: 7px;
	border: 1px solid rgba(148, 163, 184, 0.28);
	background: rgba(2, 6, 23, 0.6);
	padding: 12px;
	overflow-x: auto;
	width: 100%;
}

.week-calendar-inner {
	min-width: 0;
	width: 100%;
}

.week-calendar-head {
	display: grid;
	grid-template-columns: repeat(7, minmax(0, 1fr));
	gap: 6px;
	margin-bottom: 8px;
}

.week-day-head {
	text-align: center;
	font-size: 0.78rem;
	font-weight: 700;
	color: #fbbf24;
	padding: 6px 4px;
	border-radius: 6px;
	border: 1px solid rgba(251, 191, 36, 0.35);
	background: rgba(113, 63, 18, 0.35);
}

.week-calendar-body {
	display: grid;
	grid-template-columns: repeat(7, minmax(0, 1fr));
	gap: 8px;
}

.week-cell {
	min-height: 96px;
	border-radius: 6px;
	border: 1px solid rgba(148, 163, 184, 0.25);
	background: rgba(15, 23, 42, 0.65);
	padding: 10px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 6px;
}

.week-cell.has-value {
	border-color: rgba(56, 189, 248, 0.5);
	box-shadow: 0 8px 18px rgba(56, 189, 248, 0.15);
	background: rgba(30, 58, 138, 0.22);
}

.week-cell.is-empty {
	opacity: 0.65;
}

.week-cell-title {
	display: none;
	font-size: 0.72rem;
	font-weight: 700;
	color: #fde68a;
}

.week-cell-value {
	font-size: 0.82rem;
	font-weight: 600;
	line-height: 1.5;
	color: #e2e8f0;
	word-break: break-word;
}

@media (max-width: 860px) {
	.week-cell-title {
		display: inline-flex;
	}
}

@media (max-width: 1200px) {
	.haran-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 720px) {
	.haran-grid {
		grid-template-columns: 1fr;
	}
}

.week-value-grid {
	display: grid;
	grid-template-columns: repeat(7, minmax(0, 1fr));
	gap: 8px;
	width: 100%;
}

.weekday-panel {
	border: 1px solid rgba(251, 191, 36, 0.34);
	background: linear-gradient(135deg, rgba(250, 204, 21, 0.08), rgba(15, 23, 42, 0.65));
	border-radius: 6px;
	padding: 12px;
}

.weekday-panel-title {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.8rem;
	font-weight: 800;
	color: #fcd34d;
	padding: 4px 10px;
	border-radius: 999px;
	border: 1px solid rgba(251, 191, 36, 0.42);
	background: rgba(113, 63, 18, 0.28);
	margin-bottom: 10px;
}

.weekday-list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 8px;
}

.weekday-row {
	display: grid;
	grid-template-columns: 90px minmax(0, 1fr);
	align-items: center;
	gap: 10px;
	padding: 9px 10px;
	border-radius: 6px;
	border: 1px solid rgba(148, 163, 184, 0.25);
	background: rgba(15, 23, 42, 0.62);
}

.weekday-row.has-value {
	border-color: rgba(250, 204, 21, 0.42);
	background: rgba(113, 63, 18, 0.26);
}

.weekday-name {
	font-size: 0.75rem;
	font-weight: 700;
	color: #fde68a;
	line-height: 1.2;
}

.weekday-value {
	font-size: 0.8rem;
	font-weight: 500;
	line-height: 1.35;
	color: #e2e8f0;
	word-break: break-word;
}

.week-value-item {
	padding: 8px;
	border-radius: 6px;
	border: 1px solid rgba(148, 163, 184, 0.24);
	background: rgba(15, 23, 42, 0.58);
	min-height: 66px;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.week-value-item.has-value {
	border-color: rgba(56, 189, 248, 0.45);
	background: rgba(30, 58, 138, 0.2);
}

.week-day {
	font-size: 0.72rem;
	font-weight: 700;
	color: #93c5fd;
	line-height: 1.2;
}

.week-text {
	font-size: 0.76rem;
	font-weight: 500;
	color: #e2e8f0;
	line-height: 1.35;
	word-break: break-word;
}

@media (max-width: 1360px) {
	.week-value-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

@media (max-width: 860px) {
	.week-value-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.weekday-row {
		grid-template-columns: 1fr;
		gap: 6px;
	}
}

.chip-daily { border-color: rgba(56, 189, 248, 0.36); }
.chip-key { border-color: rgba(251, 191, 36, 0.44); }
.chip-ess { border-color: rgba(129, 140, 248, 0.44); }
.chip-routine { border-color: rgba(148, 163, 184, 0.4); }
.chip-way { border-color: rgba(56, 189, 248, 0.36); }
.chip-point { border-color: rgba(129, 140, 248, 0.4); }
.chip-healing { border-color: rgba(74, 222, 128, 0.35); }
.chip-week { border-color: rgba(251, 191, 36, 0.36); }

.chip-key .option-chip-label,
.chip-week .option-chip-label,
.chip-ess .option-chip-label {
	color: #e2e8f0;
}

.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: 9999px;
	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;
}

.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: linear-gradient(90deg, rgba(56, 189, 248, 0.1) 0%, transparent 100%);
	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: 2.6rem;
	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: 1.5rem;
	letter-spacing: 0.5px;
}

.to_day {
	background: #0c1224;
	border-top: 1px solid #29315b;
	border-bottom: 1px solid #29315b;
	font-size: 1rem;
	text-align:center;
	padding: 30px;
}

.to_day i {
	color:#895eff;
	margin-right: 5px;
}

.thought {
	background: #0c1224;
	border: 1px solid #29315b;
	border-radius: 7px;
	font-size: 1rem;
	text-align:center;
	margin: 0px 50px;
	padding: 30px;
}

.thought i {
	color:#ff1e1e;
	margin-right: 5px;
}

.View-Content {
	background-color: var(--content-black);
	margin: 10px 50px;
	padding: 80px 60px;
	line-height: 1.8;
	border-radius: 6px;
	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: 6px;
	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;
	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: 6px;
	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;
}

.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: 6px;
	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 200px;
	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,
	.View-Option-Area {
		margin-left: 50px;
		margin-right: 50px;
	}
}