/* The Modal (background) */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.8); /* พื้นหลังมืด */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Modal Content */
.modal-content {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(0,0,0,0.6);
  max-width: 90%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Image */
.modal-content img {
  width: 100%;        /* ขยายเต็มความกว้าง modal */
  height: auto;       /* ความสูงอัตโนมัติตามสัดส่วน */
  max-height: 80vh;   /* จำกัดสูงสุดไม่เกิน ..% ของหน้าจอ */
  object-fit: contain; /* รักษาสัดส่วนรูป */
  display: block;
  border-radius: 5px;
}

/* Footer (กรอบด้านล่าง) */
.modal-footer {
  width: 100%;
  padding: 10px 0;
  text-align: center;
  background: #f2f2f2;
  border-top: 1px solid #ddd;
}

/* ปุ่มปิด */
.close-btn {
  background-color: rgb(112, 112, 112);
  color: white;
  border: none;
  padding: 8px 20px;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.close-btn:hover {
  background-color: rgb(81, 81, 81);
}
