#modelBox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7); /* เพิ่มพื้นหลังสีดำบางๆ ให้กับ modal */
    padding: 20px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    display: block; /* ให้ modal แสดงทันทีเมื่อหน้าโหลด */
    z-index: 9999; /* ให้ modal อยู่ด้านบนสุด */
    overflow: auto;
}

#modelBox img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

button {
    padding: 10px 20px;
    border: none;
    background-color: #4f639b;
    color: white;
    cursor: pointer;
    font-size: 16px;
    position: absolute;
    top: 20px;
    right: 20px; /* ตั้งปุ่ม close อยู่มุมขวาบน */
}

button:hover {
    background-color: #3c4d7c;
}