.popup {
  display: none; /* ซ่อน popup ไว้ก่อน */
  position: fixed; /* ให้อยู่เหนือเนื้อหาอื่น ๆ */
  z-index: 1; /* ให้อยู่ด้านบนสุด */
  left: 0;
  top: 0;
  width: 100%; 
  height: 100%; 
  overflow: auto; 
  background-color: rgba(0,0,0,0.4); /* พื้นหลังทึบแสง */
}

.popup-content {
  background-color: #fefefe;
  margin: 15% auto; /* จัดให้อยู่ตรงกลาง */
  padding: 20px;
  border: 1px solid #888;
  width: 350px; /* ขนาดตามที่ระบุ */
  height: 350px; /* ขนาดตามที่ระบุ */
  position: relative;
}

.close-button {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

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

