#globalSaveBadge {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    transition: opacity 0.2s ease, transform 0.2s ease;
}
.section_accordion2 {
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50px;
}
.section_accordion {
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50px;
}
.section_accordion a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    color: #333;
    font-size: 17px;
}

/* 좌/우 레이아웃 */
.inv-edit-wrap {
    display: flex;
    gap: 14px;
}

.inv-left {
    width: 420px;
    flex: 0 0 420px;
}

.inv-right {
    flex: 1 1 auto;
    min-width: 320px;
}

@media (max-width: 1200px) {
    .inv-edit-wrap {
        flex-direction: column;
    }

    .inv-left {
        width: 100%;
        flex: 1 1 auto;
    }
}

.inv-pack-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.inv-pack {
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    background: #fff;
}

.inv-pack.is-active {
    outline: 2px solid rgba(30, 135, 240, 0.35);
    border-color: rgba(30, 135, 240, 0.35);
}

.inv-pack .thumb {
    height: 110px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inv-pack .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.inv-pack .meta {
    padding: 10px;
}

.inv-pack .title {
    font-weight: 700;
    font-size: 13px;
}

.inv-pack .desc {
    font-size: 12px;
    color: #777;
    margin-top: 4px;
    line-height: 1.2;
    min-height: 28px;
}

.inv-iframe {
    width: 100%;
    height: calc(100vh - 150px);
    border: 1px solid #e5e5e5;
    border-radius: 12px;
}

.uk-switch {
    display: none;
}

.uk-switch-label {
    position: relative;
    display: inline-block;
    width: 66px;
    height: 32px;
    background: #ccc;
    border-radius: 13px;
    cursor: pointer;
    font-size: 13px;
    font-weight: bold;
    color: #fff;
    border-radius: 50px;
}

.uk-switch-label .on,
.uk-switch-label .off {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    line-height: 32px;
    text-align: center;
    pointer-events: none;
}

.uk-switch-label .on {
    left: 2px;
    opacity: 0;
}

.uk-switch-label .off {
    right: 4px;
    opacity: 1;
}

.uk-switch-label::after {
    content: "";
    position: absolute;
    width: 28px;
    height: 28px;
    left: 2px;
    top: 2px;
    background: #fff;
    border-radius: 50%;
    transition: 0.2s;
}

.uk-switch:checked + .uk-switch-label {
    background: #1e87f0;
}

.uk-switch:checked + .uk-switch-label::after {
    left: 36px;
}

.uk-switch:checked + .uk-switch-label .on {
    opacity: 1;
}

.uk-switch:checked + .uk-switch-label .off {
    opacity: 0;
}
