﻿/* ===== 다이얼로그 : 이미지를 크게 보여주는 창 =====*/
/* 다이얼로그 */
.no-padding-dialog .k-dialog-content {
    padding: 0 !important;
    max-height: 90vh;
    max-width: 90vw;
    overflow: auto;
}
/* 다이얼로그 : 오른쪽 상단 닫기 버튼 */
.image-container .custom-close {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(0,0,0,0.6);
    color: white;
    border: none;
    border-radius: 5%;
    width: 40px;
    height: 40px;
    font-size: 18px;
    line-height: 28px;
    text-align: center;
    cursor: pointer;
}
/* 다이얼로그 : 클로즈 버튼 */
.image-container .custom-close:hover {
    background: rgba(0,0,0,0.8);
}



/* ===== 오버레이 : 이미지에 "클릭하면 크게 볼 수 있다" 라고 표시해 주는  =====*/
/* 오버레이 : 썸네일 컨테이너 */
.thumbnail-container {
    position: relative;
    display: inline-block;
    cursor: pointer;
}
/* 오버레이 : 텍스트 */
.thumbnail-container .overlay-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.6);
    color: #fff;
    font-size: 14px;
    text-align: center;
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    padding: 6px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* 오버레이 : 마우스 올렸을 때만 보이게 */
.thumbnail-container:hover .overlay-text {
    opacity: 1;
}
