/* Overlay เต็มหน้าจอ */
.wp-mourning-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999; /* ให้อยู่บนสุด */
    display: none; /* ซ่อนไว้ก่อนโดยค่าเริ่มต้น */
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    font-family: sans-serif;
}

/* กล่องเนื้อหา Popup */
.wp-mourning-popup-content {
    max-width: 800px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.wp-mourning-text {
    margin-bottom: 30px;
    font-size: 1.2rem;
    line-height: 1.6;
}

.wp-mourning-btn {
    padding: 12px 30px;
    font-size: 1rem;
    background-color: transparent;
    border: 2px solid currentColor;
    color: inherit;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.wp-mourning-btn:hover {
    background-color: currentColor;
}

/* ให้ตัวอักษรเปลี่ยนสีตรงกันข้ามเมื่อ hover ปุ่ม */
.wp-mourning-popup-content[style*="color: #ffffff"] .wp-mourning-btn:hover,
.wp-mourning-popup-content[style*="color: white"] .wp-mourning-btn:hover {
    color: #000000 !important;
}

.wp-mourning-popup-content[style*="color: #000000"] .wp-mourning-btn:hover,
.wp-mourning-popup-content[style*="color: black"] .wp-mourning-btn:hover {
    color: #ffffff !important;
}
