﻿/* ============================================================
   BACKUP SKIN - style.write.css
   배경색: #1a2436 (솔리드, 애니메이션 없음)
   모서리 라운딩: 전반적으로 축소
   ============================================================ */

/* ── body/html 배경 전체 덮기 ── */
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); }
textarea::-webkit-scrollbar { width: 6px; }
textarea::-webkit-scrollbar-thumb { background: rgba(0,242,255,0.2); }
textarea::-webkit-scrollbar-thumb:hover { background: #00f2ff; }
* { scrollbar-width: thin; scrollbar-color: #1e293b #111827; }

/* ── 전체 래퍼 ── */
#WRITE_WRAP {
    position: relative;
    min-height: 100vh;
    background: #1a2436;
    padding: 60px 0;
    font-family: 'Pretendard', sans-serif;
}

/* space-canvas 숨김 (사용 안 함) */
#space-canvas { display: none; }

#WRITE {
    position: relative;
    z-index: 2;
    width: 90%;
    margin: 0 auto;
}

/* ── 폼 카드 ── */
#fwrite {
    background: rgba(14, 22, 40, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    overflow: hidden;
}

/* ── 상단 바 ── */
.write-top-bar {
    padding: 25px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.write-top-title { margin: 0; font-size: 1.6rem; color: #00f2ff; letter-spacing: 1px; font-weight: 800; }
.write-top-actions { display: flex; gap: 12px; }

/* ── 테이블 ── */
.write-table { width: 100%; border-collapse: collapse; }
.write-table tr { border-bottom: 1px solid rgba(255,255,255,0.05); transition: 0.3s; }
.td-label {
    width: 200px;
    padding: 22px 28px;
    color: #e2e8f0;
    font-size: 0.85rem;
    font-weight: 700;
    background: rgba(255,255,255,0.02);
    vertical-align: top;
}
.td-label i { width: 26px; color: #00f2ff; margin-right: 10px; }
.td-value { padding: 18px 38px; }

/* ── 필드 행 레이아웃 ── */
.field-row-wrap { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.field-caption { color: #64748b; font-size: 0.85rem; margin-left: 4px; }
.field-caption.no-margin { margin-left: 0; }

/* ── 폼 입력 요소 (모서리 라운딩 축소) ── */
input[type="text"],
input[type="date"],
input[type="time"],
select,
textarea {
    background: rgba(0,0,0,0.4) !important;
    border: 1px solid rgba(255,255,255,0.15) !important;
    color: #fff !important;
    padding: 10px 15px !important;
    border-radius: 4px !important;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

select {
    padding-right: 36px !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2300f2ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: calc(100% - 10px) center !important;
    background-size: 14px !important;
    cursor: pointer;
}
select option { background-color: #0f172a !important; color: #fff !important; }

/* ── 호버 / 포커스 ── */
input[type="text"]:hover, select:hover, input[type="date"]:hover, input[type="time"]:hover {
    border-color: rgba(0,242,255,0.5) !important;
    background: rgba(255,255,255,0.05) !important;
    box-shadow: 0 0 8px rgba(0,242,255,0.1);
}
input[type="text"]:focus, select:focus, textarea:focus {
    border-color: #00f2ff !important;
    box-shadow: 0 0 12px rgba(0,242,255,0.25);
    outline: none;
}

/* ── 날짜/시간 아이콘 흰색, 펼침 메뉴 블랙 스타일 ── */
input[type="date"],
input[type="time"] {
    color-scheme: dark;
}
input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
    filter: invert(1) brightness(2);
    cursor: pointer;
    opacity: 0.85;
}

/* ── 날짜/시간 래퍼 ── */
.date-time-wrap { margin-left: auto; display: flex; gap: 10px; align-items: center; }

/* ── 토글 스위치 ── */
.switch { position: relative; display: inline-block; width: 44px; height: 22px; vertical-align: middle; margin: 0 4px; }
.switch input { opacity: 0; width: 0; height: 0; }
.slider {
    position: absolute; cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #1e293b; transition: 0.4s;
    border-radius: 22px; border: 1px solid rgba(255,255,255,0.1);
}
.slider:before {
    position: absolute; content: "";
    height: 14px; width: 14px; left: 4px; bottom: 3px;
    background-color: #64748b; transition: 0.4s; border-radius: 50%;
}
.switch input:checked + .slider { background-color: rgba(0,242,255,0.2); border-color: #00f2ff; }
.switch input:checked + .slider:before { transform: translateX(20px); background-color: #00f2ff; box-shadow: 0 0 7px #00f2ff; }

/* ── 메모 버튼 ── */
.btn-memo-toggle {
    background: none;
    border: 1px solid #00f2ff;
    color: #00f2ff;
    padding: 7px 15px;
    border-radius: 4px;
    font-size: 0.78rem;
    cursor: pointer;
    transition: all 0.2s;
}
.btn-memo-toggle:hover { background: rgba(0,242,255,0.1); }

/* ── 메모 영역 ── */
.memo-area {
    display: none;
    margin-top: 15px;
    padding: 18px;
    width: 100%;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 6px;
    box-sizing: border-box;
}
.memo-area.open { display: block; }
.memo-clean-wrap { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }

textarea {
    line-height: 1.7;
    padding: 18px 20px !important;
    width: 100%;
    box-sizing: border-box;
    overflow-y: auto;
    border-radius: 4px !important;
}

/* ── 텍스트에어리어 (주 에디터 제외) ── */
.memo-area textarea { font-size: 0.82rem; min-height: 100px; }

/* ── 첨부 파일 ── */
.file-row { display: none; align-items: center; gap: 12px; margin-bottom: 10px; padding: 10px; background: rgba(255,255,255,0.03); border-radius: 6px; }
.file-row.active { display: flex; flex-wrap: wrap; }
.file-btn-custom { background: #00f2ff; color: #000; padding: 6px 14px; border-radius: 4px; font-weight: 700; cursor: pointer; font-size: 0.78rem; transition: 0.3s; }
.file-btn-custom:hover { background: #fff; transform: scale(1.03); }
.file-desc-input { background: rgba(255,255,255,0.05) !important; border: 1px solid rgba(255,255,255,0.1) !important; width: 280px !important; font-size: 0.78rem !important; height: 34px !important; }
.btn-add-file { background: none; border: 1px solid #334155; color: #8fa3ad; padding: 7px 18px; border-radius: 4px; cursor: pointer; font-size: 0.78rem; }

/* ── 버튼 ── */
.btn-action { transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); cursor: pointer; }
.btn-action:hover { transform: translateY(-2px) scale(1.02); filter: brightness(1.1); box-shadow: 0 8px 20px rgba(0,242,255,0.3); }

.btn-save-main { background: linear-gradient(45deg, #00f2ff, #0062ff); color: #fff; padding: 16px 80px; border-radius: 30px; font-weight: 800; border: none; font-size: 0.95rem; }
.btn-save-top  { background: #00f2ff; color: #000; border: none; padding: 9px 22px; border-radius: 4px; font-weight: 700; font-size: 0.82rem; }
.btn-cancel-top { background: #1e293b; color: #fff; border: 1px solid rgba(255,255,255,0.1); padding: 9px 22px; border-radius: 4px; font-size: 0.82rem; }

/* ── 에디터 토글 행 ── */
.editor-toggle-row { text-align: center; padding: 14px; background: rgba(255,255,255,0.01); }
.btn-editor-toggle { background: none; border: 1px dashed #00f2ff; color: #00f2ff; padding: 8px 28px; border-radius: 6px; cursor: pointer; font-size: 0.82rem; }

/* ── 에디터 영역 ── */
.extra-code-section { padding: 28px; background: rgba(0,0,0,0.2); border-top: 1px solid rgba(255,255,255,0.05); }
.section-title { color: #e2e8f0; font-size: 0.85rem; margin-bottom: 12px; }
.section-title i { color: #00f2ff; margin-right: 8px; }

/* ── 링크 영역 ── */
.link-item { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.link-item i { color: #00f2ff; width: 18px; }
.link-item:last-child { margin-bottom: 0; }

/* ── 제출 버튼 래퍼 ── */
.write-submit-wrap { padding: 50px; text-align: center; border-top: 1px solid rgba(255,255,255,0.05); }

/* ── 태그 입력 ── */
.tag-input { flex: 1; background: transparent !important; border: none !important; border-bottom: 1px solid rgba(255,255,255,0.2) !important; border-radius: 0 !important; padding: 5px 0 !important; font-size: 0.85rem !important; }
.tag-input:focus { border-bottom-color: #00f2ff !important; box-shadow: none !important; }

/* ============================================================
   BACKUP SKIN - VIEW (view.skin.php에서 style.write.css 사용)
   ============================================================ */

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

#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 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 .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 .section-title-row: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 #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-date { color: #94a3b8; font-size: 0.76rem; }

#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 .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 .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 .section-search-link {
    margin-left: 8px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #93c5fd;
    text-decoration: none;
    border: 1px solid rgba(147,197,253,0.45);
    border-radius: 999px;
    padding: 2px 8px;
}
#VIEW .section-search-link:hover { border-color: #38bdf8; color: #38bdf8; box-shadow: 0 0 10px rgba(56,189,248,0.2); }

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

@media (max-width: 1200px) {
    #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: 30px;
        margin-right: 30px;
    }
}

@media (max-width: 768px) {
    #VIEW .Board-Info-Header { flex-direction: column; align-items: flex-start; gap: 10px; }
    #VIEW .Btns-Right { display: flex; flex-wrap: wrap; gap: 8px; }
    #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; }
}

/* ============================================================
   BACKUP SKIN - LIST (Refined Box Layout)
   ============================================================ */

#LIST {
    position: relative;
    z-index: 2;
    background: #1a2436;
    color: #e2e8f0;
    font-family: 'Noto Sans KR', sans-serif;
    width: 100%;
    min-height: 100vh;
    padding: 20px 0 30px;
}

#LIST .TopTitle,
#LIST .Control-Bar {
    margin: 0 26px 14px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.14);
    background: linear-gradient(180deg, rgba(24, 36, 56, 0.82), rgba(12, 22, 39, 0.82));
    backdrop-filter: blur(10px);
}

#LIST .TopTitle {
    padding: 16px 18px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

#LIST .top-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

#LIST .TopTitle p {
    margin: 0;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #7dd3fc;
    text-shadow: 0 0 18px rgba(56,189,248,0.25);
}

#LIST .TopTitle > span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 7px;
    color: #9fb2c9;
    font-size: 0.82rem;
}

#LIST .total-counter {
    font-size: 0.78rem;
    color: #dbeafe;
    border: 1px solid rgba(125,211,252,0.35);
    border-radius: 999px;
    padding: 4px 11px;
    background: rgba(30,58,88,0.35);
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 0.4px;
}

#LIST .Control-Bar {
    padding: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

#LIST .control-left,
#LIST .control-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

#LIST .label-toggle-btn,
#LIST .btn-admin,
#LIST .btn-write,
#LIST .control-select,
#LIST .live-search-input,
#LIST .btn-search-submit,
#LIST .btn-search-cancel,
#LIST .btn-edit-notice,
#LIST .btn-edit-notice-dis {
    border: 1px solid rgba(255,255,255,0.17);
    background: linear-gradient(180deg, rgba(15,30,52,0.75), rgba(8,18,33,0.78));
    color: #e2e8f0;
    border-radius: 7px;
    padding: 8px 13px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all .2s ease;
}

#LIST .control-select {
    min-width: 124px;
    color-scheme: dark;
}

#LIST .label-toggle-btn:hover,
#LIST .btn-admin:hover,
#LIST .btn-write:hover,
#LIST .control-select:hover,
#LIST .live-search-input:hover,
#LIST .btn-search-submit:hover,
#LIST .btn-search-cancel:hover,
#LIST .btn-edit-notice:hover,
#LIST .btn-edit-notice-dis:hover {
    border-color: #38bdf8;
    color: #7dd3fc;
    box-shadow: 0 0 14px rgba(56,189,248,0.23);
}

#LIST .btn-write {
    background: linear-gradient(180deg, rgba(56,189,248,0.28), rgba(37,99,235,0.24));
    border-color: rgba(56,189,248,0.62);
    color: #c8f0ff;
}

#LIST .active {
    background: linear-gradient(180deg, rgba(56,189,248,0.32), rgba(37,99,235,0.24)) !important;
    border-color: #38bdf8 !important;
    color: #c8f0ff !important;
}

#LIST .live-search-input {
    width: 185px;
    outline: none;
}

#LIST .Backup-Grid {
    margin: 0 26px;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

#LIST .backup-card {
    position: relative;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(18,33,54,0.82), rgba(12,22,39,0.84));
    padding: 13px;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

#LIST .backup-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    border-radius: 10px 10px 0 0;
    background: linear-gradient(90deg, rgba(56,189,248,0), rgba(56,189,248,0.65), rgba(56,189,248,0));
    opacity: .65;
}

#LIST .backup-card:hover {
    transform: translateY(-3px);
    border-color: rgba(56,189,248,0.65);
    box-shadow: 0 12px 30px rgba(0,0,0,0.33), 0 0 0 1px rgba(56,189,248,0.12);
}

#LIST .backup-card.is-notice {
    border-color: rgba(245,158,11,0.45);
    background: linear-gradient(180deg, rgba(80,52,20,0.28), rgba(24,33,49,0.84));
}

#LIST .backup-card.is-notice::before {
    background: linear-gradient(90deg, rgba(245,158,11,0), rgba(245,158,11,0.7), rgba(245,158,11,0));
}

#LIST .card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 9px;
}

#LIST .card-num {
    color: #9ab0c9;
    font-size: 0.76rem;
    font-family: 'Orbitron', sans-serif;
}

#LIST .subject-main {
    font-size: 0.92rem;
    color: #fff;
    line-height: 1.45;
    margin-bottom: 9px;
    min-height: 46px;
    word-break: break-word;
}

#LIST .subject-options {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

#LIST .opt-chip {
    display: inline-block;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 999px;
    padding: 2px 9px;
    font-size: 0.71rem;
    color: #cbd5e1;
    background: rgba(2,6,23,0.45);
    letter-spacing: .1px;
}

#LIST .st_badge {
    display: inline-block;
    padding: 2px 7px;
    border-radius: 999px;
    font-size: 0.68rem;
    margin-right: 6px;
    border: 1px solid rgba(255,255,255,0.16);
}

#LIST .st_top { border-color: #38bdf8; color: #7dd3fc; background: rgba(56,189,248,0.14); }
#LIST .st_notice { border-color: #f59e0b; color: #fcd34d; background: rgba(245,158,11,0.15); }

#LIST .item-icons {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #60a5fa;
}

#LIST .label-star-icon { color: #facc15; }
#LIST .done-icon { color: #ef4444; }

#LIST .item-date {
    color: #9ab0c9;
    font-size: 0.77rem;
    font-family: 'Orbitron', sans-serif;
}

#LIST .card-foot {
    margin-top: 10px;
    padding-top: 8px;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: right;
}

#LIST .ok-row {
    border-left: 3px solid #86efac;
}

#LIST .ok-row:hover {
    box-shadow: inset 0 0 0 1px rgba(34,197,94,0.28), 0 12px 30px rgba(0,0,0,0.33);
}

#LIST .no-signal {
    text-align: center;
    color: #94a3b8;
    padding: 70px 10px;
    border: 1px dashed rgba(255,255,255,0.16);
    border-radius: 10px;
    background: rgba(2,6,23,0.35);
}

#LIST .live-empty-card {
    grid-column: 1 / -1;
}

#TERM_PAGING_DIRECT {
    margin: 24px 26px 10px;
    text-align: center;
}

#TERM_PAGING_DIRECT .trm-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 34px;
    padding: 0 10px;
    margin: 0 3px;
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 7px;
    color: #cbd5e1;
    text-decoration: none;
    background: rgba(2,6,23,0.5);
    font-size: 0.8rem;
}

#TERM_PAGING_DIRECT .trm-btn:hover {
    border-color: #38bdf8;
    color: #7dd3fc;
    box-shadow: 0 0 12px rgba(56,189,248,0.18);
}

#TERM_PAGING_DIRECT .trm-current {
    border-color: #38bdf8;
    color: #7dd3fc;
    background: rgba(56,189,248,0.18);
}

.trm-ico-start::before { content: '≪'; }
.trm-ico-prev::before  { content: '〈'; }
.trm-ico-next::before  { content: '〉'; }
.trm-ico-end::before   { content: '≫'; }

#LIST .NoticeLayer {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(1200px, 95vw);
    max-height: 86vh;
    overflow: hidden;
    border: 1px solid rgba(56,189,248,0.5);
    border-radius: 10px;
    background: rgba(15,23,42,0.97);
    z-index: 10001;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    padding: 18px;
}

#LIST .notice-title {
    margin: 0 0 12px;
    font-size: 1.05rem;
    color: #38bdf8;
}

#LIST .notice-content {
    max-height: calc(86vh - 140px);
    overflow-y: auto;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 7px;
    padding: 12px;
    line-height: 1.7;
    font-size: 0.86rem;
    color: #e2e8f0;
    background: rgba(2,6,23,0.45);
}

#LIST .notice-actions {
    margin-top: 12px;
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

#LIST .Search {
    position: fixed;
    inset: 0;
    background: rgba(15,23,42,0.92);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

#LIST .search-modal-box {
    width: min(500px, 94vw);
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 10px;
    background: rgba(15,23,42,0.96);
    padding: 18px;
}

#LIST .search-title {
    margin: 0 0 14px;
    color: #38bdf8;
    font-size: 0.95rem;
}

#LIST .search-input {
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 10px;
}

#LIST .search-actions {
    display: flex;
    gap: 8px;
}

#LIST .memo-side-panel {
    position: fixed;
    left: -430px;
    top: 20px;
    width: 420px;
    height: calc(100vh - 20px);
    background: linear-gradient(180deg, rgba(17, 30, 49, 0.97), rgba(10, 19, 34, 0.97));
    border-right: 1px solid rgba(255,255,255,0.14);
    border-radius: 0 10px 10px 0;
    z-index: 10002;
    transition: left .25s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 10px 0 25px rgba(0,0,0,0.25);
}

#LIST .memo-side-panel.open { left: 0; }

#LIST .memo-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}

#LIST .memo-panel-title { color: #f472b6; font-size: 0.86rem; font-weight: 700; }

#LIST .memo-panel-close {
    width: 30px;
    height: 30px;
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 7px;
    background: rgba(2,6,23,0.55);
    color: #e2e8f0;
    cursor: pointer;
}

#LIST .memo-card-list {
    padding: 10px;
    overflow-y: auto;
    display: grid;
    gap: 8px;
}

#LIST .memo-card-list.layout-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

#LIST .memo-panel-layout-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    padding: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}

#LIST .memo-layout-switch {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 999px;
    background: rgba(2,6,23,0.55);
    color: #e2e8f0;
    height: 30px;
    width: 108px;
    padding: 0 6px;
    cursor: pointer;
    overflow: hidden;
}

#LIST .memo-layout-label {
    font-size: 0.72rem;
    z-index: 2;
    width: 44px;
    text-align: center;
    line-height: 1;
}

#LIST .memo-layout-thumb {
    position: absolute;
    left: 4px;
    top: 3px;
    width: 48px;
    height: 22px;
    border-radius: 999px;
    background: rgba(56,189,248,0.25);
    transition: transform .2s ease;
    z-index: 1;
}

#LIST .memo-layout-switch.is-layout-2 .memo-layout-thumb {
    transform: translateX(52px);
}

#LIST .memo-total-text {
    color: #94a3b8;
    font-size: 0.74rem;
}

#LIST .memo-card-item {
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 7px;
    background: rgba(2,6,23,0.45);
    padding: 10px;
}

#LIST .memo-card-date { color: #94a3b8; font-size: 0.72rem; margin-bottom: 4px; }
#LIST .memo-card-subject { color: #fff; font-size: 0.82rem; font-weight: 700; margin-bottom: 4px; }
#LIST .memo-card-content { color: #cbd5e1; font-size: 0.78rem; line-height: 1.6; }
#LIST .memo-card-link { color: #38bdf8; font-size: 0.76rem; text-decoration: none; display: inline-block; margin-top: 8px; }

#LIST .memo-empty {
    text-align: center;
    color: #94a3b8;
    border: 1px dashed rgba(255,255,255,0.14);
    border-radius: 7px;
    padding: 20px 10px;
}

@media (max-width: 1200px) {
    #LIST .Backup-Grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 1000px) {
    #LIST .Backup-Grid,
    #LIST .TopTitle,
    #LIST .Control-Bar,
    #TERM_PAGING_DIRECT { margin-left: 12px; margin-right: 12px; width: auto; }
    #LIST .Backup-Grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
    #LIST .Backup-Grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    #LIST .memo-side-panel { width: min(92vw, 420px); }
    #LIST .memo-card-list.layout-2 { grid-template-columns: 1fr; }
    #LIST .control-right { width: 100%; }
    #LIST .live-search-input { flex: 1; min-width: 150px; }
}

@media (max-width: 520px) {
    #LIST .Backup-Grid { grid-template-columns: 1fr; }
    #LIST .TopTitle p { font-size: 1.3rem; }
}

/* ============================================================ */
/* NEW CARD DESIGN - VISUAL HIERARCHY UPDATE */
/* ============================================================ */

#board-list-body.Backup-Grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
    padding: 20px 0;
}

.backup-card {
    background: rgba(30, 41, 59, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 20px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 220px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.backup-card:hover {
    transform: translateY(-5px);
    background: rgba(30, 41, 59, 0.9);
    border-color: rgba(0, 242, 255, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2), 0 0 15px rgba(0, 242, 255, 0.1);
}

.backup-card.ok-row {
    border-left: 3px solid #00f2ff;
}

.backup-card.ok-row:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2), 0 0 20px rgba(0, 242, 255, 0.15);
}

/* ── Card Header (Number & Icons) ── */
.card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.card-num {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.3);
    font-weight: 700;
}

.item-icons {
    display: flex;
    gap: 8px;
}

.item-icons i {
    font-size: 0.85rem;
    color: #64748b;
    transition: color 0.2s;
}

.item-icons i:hover { color: #fff; }
.item-icons .label-star-icon { color: #fbbf24; }
.item-icons .done-icon { color: #00f2ff; }
.item-icons .fa-link { color: #a78bfa; }
.item-icons .fa-paperclip, .item-icons .fa-file-zipper { color: #22d3ee; }
.item-icons .fa-php { color: #818cf8; }


/* ── Subject Area ── */
.subject-main {
    margin-bottom: 16px;
    flex-grow: 1;
}

.subject-badges {
    display: flex;
    gap: 6px;
    margin-bottom: 8px;
}

.badge-item {
    font-size: 0.65rem;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.badge-top { background: rgba(244, 63, 94, 0.2); color: #f43f5e; border: 1px solid rgba(244, 63, 94, 0.3); }
.badge-notice { background: rgba(234, 179, 8, 0.2); color: #eab308; border: 1px solid rgba(234, 179, 8, 0.3); }

.subject-link {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: #e2e8f0;
    line-height: 1.5;
    text-decoration: none;
    transition: color 0.2s;
    word-break: keep-all;
}

.backup-card:hover .subject-link {
    color: #00f2ff;
    text-shadow: 0 0 10px rgba(0, 242, 255, 0.3);
}


/* ── Meta Grid (Tags & Status) ── */
.meta-info-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto;
    gap: 10px;
    background: rgba(0, 0, 0, 0.2);
    padding: 10px;
    border-radius: 8px;
}

/* Categories Group */
.meta-group-category {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
}

.meta-tag {
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
    color: #94a3b8;
    border-left: 2px solid transparent;
    transition: all 0.2s;
    white-space: nowrap;
    max-width: 140px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.meta-tag:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding-left: 12px;
}

.tag-category { border-left-color: #3b82f6; }
.tag-type     { border-left-color: #ec4899; }
.tag-form     { border-left-color: #10b981; }
.tag-kind     { border-left-color: #f59e0b; }


/* Status Icons Group */
.meta-group-status {
    display: flex;
    gap: 6px;
    background: rgba(0, 0, 0, 0.3);
    padding: 6px 8px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.status-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.8rem;
    transition: all 0.3s;
}

.status-icon.dim { color: rgba(255, 255, 255, 0.1); }
.status-icon.status-label { color: #fbbf24; background: rgba(251, 191, 36, 0.1); box-shadow: 0 0 5px rgba(251, 191, 36, 0.2); }
.status-icon.status-ok { color: #00f2ff; background: rgba(0, 242, 255, 0.1); box-shadow: 0 0 5px rgba(0, 242, 255, 0.2); }
.status-icon.status-set { color: #c084fc; background: rgba(192, 132, 252, 0.1); box-shadow: 0 0 5px rgba(192, 132, 252, 0.2); }


/* ── Footer / Version ── */
.meta-footer {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
    text-align: right;
}

.theme-version {
    font-family: 'Orbitron', monospace;
    font-size: 0.7rem;
    color: #475569;
    letter-spacing: 1px;
}

.card-foot {
    margin-top: 10px;
    display: flex;
    justify-content: flex-end;
}

.item-date {
    font-size: 0.75rem;
    color: #475569;
}


/* ── Subject Icons (File & PHP) ── */
.subject-icon-file,
.subject-icon-php {
    margin-right: 6px;
    font-size: 1.1em; /* Slightly larger than text */
    vertical-align: middle;
    filter: drop-shadow(0 0 2px rgba(0,0,0,0.5));
}

.subject-icon-file.fa-file-zipper {
    color: #fcd34d; /* Amber/Yellow for Zip */
}

.subject-icon-file.fa-paperclip {
    color: #38bdf8; /* Sky Blue for generic file */
}

.subject-icon-php {
    color: #818cf8; /* Indigo for PHP */
    font-size: 1.2em; /* PHP icon usually looks smaller, bump it up */
}


/* ── Updated Subject Icons (Larger & Red PHP) ── */
.subject-icon-file,
.subject-icon-php {
    margin-right: 8px;
    font-size: 1.4em !important; /* Made significantly larger */
    vertical-align: sub; /* Align better with larger text */
    filter: drop-shadow(0 2px 2px rgba(0,0,0,0.6));
    display: inline-block;
    width: 24px;
    text-align: center;
}

.subject-icon-file.fa-file-zipper {
    color: #fbbf24; /* Keep warm yellow for ZIP */
}

.subject-icon-file.fa-paperclip {
    color: #38bdf8; /* Keep sky blue for other files */
}

.subject-icon-php {
    color: #ef4444; /* Changed to RED per request */
    font-size: 1.4em !important;
}


/* ============================================================ */
/* VIEW SKIN - ENHANCED DEPTH (Matching List Design) */
/* ============================================================ */

/* Main Containers: Glassmorphism & Depth */
#VIEW .Board-Info-Header,
#VIEW .Header-Main-Section,
#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,
#VIEW .Post-Navigation,
#VIEW .View-Bottom-Control {
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#VIEW .Board-Info-Header {
    background: rgba(15, 23, 42, 0.85); /* Slightly darker navigation bar */
    border-bottom: 2px solid rgba(255, 255, 255, 0.05);
}

/* Hover Effects for Interactive Sections */
#VIEW .Post-Navigation:hover,
#VIEW .View-Attached-Data:hover,
#VIEW .View-Tag-Area:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.15);
}

/* Title Decoration */
#VIEW .Header-Main-Section h1 {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 16px;
}

/* Inner Chips & Items - Depth */
#VIEW .meta-item,
#VIEW .option-chip,
#VIEW .data-item,
#VIEW .tag-item,
#VIEW .nav-meta-chip {
    background: rgba(0, 0, 0, 0.3) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

#VIEW .meta-item:hover,
#VIEW .option-chip:hover,
#VIEW .data-item:hover,
#VIEW .tag-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(0, 242, 255, 0.3) !important;
}

/* Buttons - Consistent with List */
#VIEW .Btns-Right button,
#VIEW .Admin-Control button,
#VIEW .List-Btn-Footer,
#VIEW .code-action-btn {
    background: linear-gradient(180deg, rgba(30, 41, 59, 0.9), rgba(15, 23, 42, 0.95)) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Specific Write Button */
#VIEW .Write-Btn {
    background: linear-gradient(45deg, #00f2ff, #0ea5e9) !important;
    color: #0f172a !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(0, 242, 255, 0.3);
}

#VIEW .Write-Btn:hover {
    box-shadow: 0 6px 20px rgba(0, 242, 255, 0.5);
    transform: translateY(-2px) scale(1.02);
}

/* Content Area Depth */
#VIEW .View-Content {
    background: rgba(15, 23, 42, 0.4);
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.2);
}

#VIEW #bo_v_con {
    color: #cbd5e1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}


/* ============================================================ */
/* VIEW SKIN - CORE UI UPDATES (Write Button & Files) */
/* ============================================================ */

/* 1. Write Button Visibility Refinement */
#VIEW .Write-Btn {
    /* Change to a Deep Blue Gradient for White Text Contrast */
    background: linear-gradient(135deg, #2563eb, #0284c7) !important;
    color: #ffffff !important;
    font-size: 1.1rem !important; /* Larger text */
    font-weight: 800 !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5); /* Shadow for legibility */
    min-width: 250px !important; /* Requested Width */
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.2) !important;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4) !important;
}

#VIEW .Write-Btn:hover {
    background: linear-gradient(135deg, #1d4ed8, #0369a1) !important;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.6) !important;
    transform: translateY(-3px) scale(1.02);
    border-color: #fff !important;
}

#VIEW .Write-Btn i {
    font-size: 1.2rem;
    margin-right: 10px;
}


/* 2. Attachment Area - Centered & Enlarged (Core Feature) */
#VIEW .View-Attached-Data {
    background: rgba(15, 23, 42, 0.9) !important;
    border: 1px solid rgba(56, 189, 248, 0.3) !important;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.4), inset 0 0 20px rgba(56, 189, 248, 0.05) !important;
    padding: 25px !important;
    margin-top: 30px !important;
    margin-bottom: 20px !important;
}

#VIEW .View-Attached-Data .section-title-row {
    font-size: 1rem !important;
    color: #fff !important;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 10px;
    margin-bottom: 20px;
    width: 100%;
}

#VIEW .data-item {
    background: linear-gradient(90deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9)) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    padding: 20px 25px !important; /* Larger padding */
    border-radius: 12px !important;
    display: flex;
    align-items: center;
    gap: 20px !important;
    min-height: 80px; /* Taller items */
}

#VIEW .data-item:hover {
    background: linear-gradient(90deg, rgba(30, 41, 59, 0.95), rgba(15, 23, 42, 1)) !important;
    border-color: #00f2ff !important;
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), 0 0 15px rgba(0, 242, 255, 0.2) !important;
}

/* File Icon - Huge & Glowing */
#VIEW .data-item i.fa-download,
#VIEW .data-item i.fa-file-zipper,
#VIEW .data-item i.fa-paperclip {
    font-size: 2rem !important; /* Huge icon */
    color: #00f2ff !important;
    filter: drop-shadow(0 0 8px rgba(0, 242, 255, 0.6));
    width: 50px;
    text-align: center;
}

/* File Info Text */
#VIEW .data-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}

#VIEW .data-name {
    font-size: 1.15rem !important; /* Larger filename */
    font-weight: 700 !important;
    color: #fff !important;
    text-shadow: 0 0 10px rgba(255,255,255,0.2);
}

#VIEW .data-description {
    font-size: 0.9rem !important;
    color: #94a3b8 !important;
}

/* Download Count / Size Badge */
#VIEW .data-meta {
    font-family: 'Orbitron', monospace;
    font-size: 0.85rem;
    color: #64748b;
    background: rgba(0,0,0,0.4);
    padding: 6px 12px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.05);
}

