#galleryModal .modal-content {
    background-color: rgba(0, 0, 0, 0.9); 

#galleryModal .carousel-item img {
    width: 100vw;    /* 너비를 화면 너비만큼 */
    height: 100vh;   /* 높이를 화면 높이만큼 */
    object-fit: contain; /* 비율 유지하며 꽉 채우기 */
}

.btn-close-white {
    z-index: 1100;
}

  .full-screen-img {
    width: 100%;    /* 가로 꽉 채우기 */
    max-height: 95vh;   /* 세로 화면 높이의 95%까지 */
    object-fit: contain; /* 비율 유지하며 최대 크기로 */
    margin: auto;
  }

  .modal-body, .carousel, .carousel-inner, .carousel-item {
    padding:0 !important;

  }
  
  .carousel, .carousel-inner, .carousel-item {
    height: 100vh !important;
    width: 100% !important;
  }



