/* 隱藏 Modal */
.modal {
  display: none; 
  position: fixed;
  z-index: 999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.8); /* 背景變暗 */
}

/* 圖片容器 */
.modal-content-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

#modalImg {
  max-width: 90%;
  max-height: 80%;
  border: 3px solid white;
}

/* 關閉按鈕 */
.close {
  position: absolute;
  top: 20px; right: 35px;
  color: white;
  font-size: 40px;
  cursor: pointer;
}