.sgrp-media-edit-modal-navigation-bar {
    /* position: absolute;
    left: 0;
    top: 0; */
    width: 68px;
    height: 100%;
    background: var(--color-soft-white);
    border-right: 1px solid var(--color-gray-100);
    z-index: 4;
    display: flex;
    flex-direction: column;
    box-shadow: 2px 0px 8px rgba(0, 0, 0, 0.08);
}

.sgrp-media-edit-modal-nav-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.sgrp-media-edit-modal-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 100%;
    height: 68px;
    padding: 4px;
    border: none;
    background: transparent;
    cursor: pointer;
    transition: background 0.2s ease;
    color: var(--color-soft-black);
}

.sgrp-media-edit-modal-nav-item:is(:hover, :focus-visible) {
    background: var(--color-gray-100);
}

.sgrp-media-edit-modal-nav-item.is-active {
    background: var(--color-gray-100);
}

.sgrp-media-edit-modal-nav-item svg {
    width: 28px;
    height: 28px;
}

.sgrp-media-edit-modal-nav-label {
    font-family: var(--font-base);
    font-size: 10px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--color-soft-black);
}