/* 라이트박스 화살표 이미지 스타일 개선 */

/* PNG 이미지 화살표 스타일 */
.galleryPrev img, .galleryNext img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1); /* 이미지를 흰색으로 변경 */
    display: block;
}

/* 라이트박스 컨트롤 버튼 스타일 개선 */
.galleryPrev, .galleryNext {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.galleryPrev:hover, .galleryNext:hover {
    background: rgba(0, 0, 0, 0.8);
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.1);
}

.galleryPrev:hover img, .galleryNext:hover img {
    transform: scale(1.2);
}

/* 라이트박스 닫기 버튼도 수정 */
.galleryClose.ion-ios-close-empty:before {
    content: "×";
    font-size: 30px;
    font-weight: bold;
    color: white;
    display: inline-block;
}

/* 라이트박스 전체 스타일 개선 */
#lightbox {
    z-index: 9999;
}

.lightbox-inner .controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.lightbox-inner .controls > div {
    pointer-events: auto;
}