/* --- Simple Modal Popup Styles --- */

/* พื้นหลังสีดำโปร่งแสงที่คลุมทั้งหน้าจอ */
.simple-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: none; /* ซ่อนไว้เป็นค่าเริ่มต้น */
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

/* ทำให้ Popup แสดงผลเมื่อมี class 'active' */
.simple-modal-overlay.active {
    display: flex;
    opacity: 1;
}

/* กล่องเนื้อหาของ Popup */
.simple-modal-content {
    background-color: #ffffff; /* พื้นหลังสีขาว */
    color: #000000; /* ตัวอักษรสีดำ */
    padding: 25px 30px;
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease-in-out;
}

.simple-modal-overlay.active .simple-modal-content {
    transform: scale(1);
}

/* หัวข้อของ Popup */
.simple-modal-title {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.5em;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

/* เนื้อหาหลัก */
.simple-modal-body p {
    line-height: 1.6;
}
.simple-modal-body a {
    color: #0073aa;
}

/* ปุ่มปิด (กากบาท) */
.simple-modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    font-weight: bold;
    line-height: 1;
    color: #888;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.simple-modal-close:hover {
    color: #000;
}