
.cropmodal {
    display: none; 
    position: fixed; 
    z-index: 1056; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgba(0,0,0,0.4); 
    justify-content: center;
    align-items: center;
}
.croppermodal-content {
    position: relative;
    max-width: 90%; /* 모달 최대 너비 설정 */
    max-height: 90%; /* 모달 최대 높이 설정 */
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    background-color: #fff;
    overflow: hidden;
}


.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.img-container {
    max-height: 80vh;
    overflow: auto;
    text-align: center;
    position: relative;
}

.img-preview {
    width: 100%;
    height: auto;
    margin-top: 20px;
    max-width: 100%;
    max-height: 300px; /* 미리보기 이미지 최대 높이 */
    overflow: hidden;
}

#image {
    max-width: 100%; 
    max-height: 100%;
}

.cropper-inputImage {
    display: none; /* 파일 입력 요소 숨기기 */
}

li {
    text-align: left;
}