/* style.css */

.modal-overlay {
    display: none; /* ซ่อน Modal ในตอนแรก */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* พื้นหลังสีดำโปร่งแสง */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000; /* ให้ Modal อยู่ด้านบนสุด */
}

.modal-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 500px;
    width: 90%;
    transform: translateY(-50px); /* เลื่อนขึ้นเล็กน้อยเพื่อเอฟเฟกต์ */
    opacity: 0; /* ซ่อนในตอนแรกเพื่อทำ animation */
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

.modal-content.show {
    transform: translateY(0);
    opacity: 1;
}

.modal-content h2 {
    color: #333;
    margin-bottom: 15px;
}

.modal-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

#closeModalBtn {
    background-color: #f16969;
    color: rgb(204, 255, 0);
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.2s ease-in-out;
}

#closeModalBtn:hover {
    background-color: #f16969;
}