@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');
.ice_header {
    display: none !important;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --archive-bg: #f4f7fb;
    --archive-panel: #ffffff;
    --archive-border: #e4eaf2;

    --archive-navy: #071832;
    --archive-navy-light: #102b53;

    --archive-blue: #2878ff;
    --archive-blue-dark: #155fe0;
    --archive-cyan: #57dce9;
    --archive-mint: #52e1c2;

    --archive-text: #101828;
    --archive-text-sub: #667085;
    --archive-text-light: #98a2b3;

    --archive-success: #13b983;
    --archive-danger: #ed5050;
    --archive-warning: #f5a623;

    --archive-radius: 16px;
    --archive-shadow:
        0 14px 45px rgba(15, 35, 65, 0.08);
}

html {
    /* min-width: 320px; */
    background: var(--archive-bg);
}

body {
    min-height: 100vh;
    font-family:
        "Inter",
        "Pretendard",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    color: var(--archive-text);
    background: var(--archive-bg);
    -webkit-font-smoothing: antialiased;
}

button,
input,
select {
    font: inherit;
}
input {
    min-height: 38px;
}
button,
a {
    -webkit-tap-highlight-color: transparent;
    display: inline;
}

button {
    border: 0;
    background: none;
    cursor: pointer;
}

a {
    color: inherit;
    text-decoration: none;
}

svg {
    display: block;
}

/* =============================
 * 전체 레이아웃
 * ============================= */

.archive-dashboard {
    min-height: 100vh;
    display: flex;
}

.archive-sidebar {
    width: 260px;
    min-width: 260px;
    /* min-height: 100vh; */
    padding: 24px 18px;
    background:
        radial-gradient(
            circle at 20% 10%,
            rgba(40, 120, 255, 0.22),
            transparent 35%
        ),
        linear-gradient(
            180deg,
            #071832 0%,
            #06142b 100%
        );
    color: #fff;
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 100;
}
.archive-sidebar {
    overflow-y: auto;
}

.archive-main {
    width: calc(100% - 260px);
    min-height: 100vh;
    margin-left: 260px;
}



/* =============================
 * 빈 결과
 * ============================= */

 .archive-empty {
    display: none;
    padding: 70px 20px;
    text-align: center;
}

.archive-empty.is-visible {
    display: block;
}

.archive-empty-icon {
    width: 54px;
    height: 54px;
    margin: 0 auto;
    border-radius: 15px;
    background: #f0f4fa;
    color: var(--archive-text-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.archive-empty-icon svg {
    width: 23px;
    height: 23px;
}

.archive-empty strong {
    display: block;
    margin-top: 14px;
    font-size: 13px;
}

.archive-empty p {
    margin-top: 6px;
    font-size: 10px;
    color: var(--archive-text-light);
}

/* =============================
 * 알림 토스트
 * ============================= */

.archive-toast {
    min-width: 260px;
    max-width: calc(100vw - 32px);
    min-height: 55px;
    padding: 12px 15px;
    border-radius: 13px;
    background: #0c2345;
    color: #fff;
    box-shadow:
        0 18px 45px rgba(7, 24, 50, 0.25);
    display: flex;
    align-items: center;
    gap: 10px;
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 300;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition:
        opacity 0.25s,
        visibility 0.25s,
        transform 0.25s;
}

.archive-toast.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.archive-toast-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(82, 225, 194, 0.15);
    color: var(--archive-mint);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.archive-toast-icon svg {
    width: 14px;
    height: 14px;
}

.archive-toast-text strong {
    display: block;
    font-size: 11px;
}

.archive-toast-text span {
    display: block;
    margin-top: 2px;
    font-size: 9px;
    color: rgba(255, 255, 255, 0.55);
}

.archive-sidebar-dimmed {
    display: none;
}



/* =============================
 * 메인 콘텐츠
 * ============================= */

 .archive-content {
    max-width: 1440px;
    margin: 0 auto;
    padding: 34px;
}

.archive-page-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
}

.archive-page-eyebrow {
    font-size: 10px;
    font-weight: 800;
    color: var(--archive-blue);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.archive-page-title {
    margin-top: 7px;
    font-size: 27px;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.archive-page-description {
    margin-top: 7px;
    font-size: 13px;
    color: var(--archive-text-sub);
    line-height: 1.65;
}

.archive-upload-button {
    min-height: 45px;
    padding: 0 19px;
    border-radius: 11px;
    background:
        linear-gradient(
            135deg,
            var(--archive-blue),
            #4468ff
        );
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    box-shadow:
        0 8px 22px rgba(40, 120, 255, 0.22);
    transition:
        transform 0.2s,
        box-shadow 0.2s;
}

.archive-upload-button:hover {
    transform: translateY(-2px);
    box-shadow:
        0 11px 27px rgba(40, 120, 255, 0.28);
}

.archive-upload-button svg {
    width: 17px;
    height: 17px;
}