/* Image Expand Modal */
.select-image-expand-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.select-image-expand-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(24px);
}

.select-image-expand-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.select-image-expand-meta {
    position: absolute;
    top: 32px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 14px;
    color: var(--color-soft-white);
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0.02em;
}

.select-image-expand-footer {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 14px;
}

.select-image-expand-action {
    appearance: none;
    border: none;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    /* width: 36px;
    height: 36px; */
    border-radius: 50%;
    transition: background 0.2s ease;
    padding: 6px;
}

.select-image-expand-action:hover {
    background: rgba(255,255,255,0.8);
}

.select-image-expand-action .icon {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}

.select-image-expand-close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.select-image-expand-img,
.select-image-expand-video {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}