/* Plugin Style: Advanced Fullscreen Popup Manager 
    Version: 3.4
    Chống giật màn hình và tối ưu giao diện Popup
*/

/* --- 1. CHỐNG GIẬT MÀN HÌNH --- */
/* Ngăn trang bị đẩy sang trái/phải hoặc nhảy lên đầu khi ẩn thanh cuộn */
html.sfp-no-scroll, 
body.sfp-no-scroll {
    overflow: hidden !important;
    height: auto !important;
    position: relative !important;
    /* Giữ lại khoảng trống của thanh cuộn để layout không bị dịch chuyển */
    scrollbar-gutter: stable; 
}

/* --- 2. STYLE NÚT BẤM (Giao diện Start Quiz) --- */
.sfp-btn-wrap {
    margin: 15px 0;
    display: block;
    width: 100%;
}

.sfp-trigger-btn {
    width: 100%;
    background-color: #007bff; /* Màu xanh dương chuẩn */
    color: #ffffff !important;
    border: none;
    border-radius: 8px; 
    padding: 14px 30px;
    font-size: 18px; 
    font-weight: 700; 
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    display: inline-block;
    line-height: 1.4;
    box-shadow: 0 4px 0 #0056b3; /* Hiệu ứng khối 3D phía dưới */
    text-transform: none;
    text-decoration: none;
    font-family: inherit;
    outline: none;
}

.sfp-trigger-btn:hover {
    background-color: #0069d9;
    transform: translateY(-2px);
    box-shadow: 0 6px 0 #0056b3;
    color: #ffffff !important;
}

.sfp-trigger-btn:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 #0056b3;
}

/* --- 3. POPUP OVERLAY (Full màn hình) --- */
.sfp-popup-overlay {
    display: none;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-color: #ffffff;
    z-index: 2147483647 !important; /* Đè lên tất cả các thành phần khác */
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 !important;
    padding: 0 !important;
}

/* --- 4. NÚT ĐÓNG (X) --- */
.sfp-close-btn {
    position: fixed;
    top: 15px;
    right: 25px;
    font-size: 50px;
    line-height: 1;
    cursor: pointer;
    color: #333;
    opacity: 0.5;
    transition: all 0.3s ease;
    z-index: 2147483648;
    font-family: 'Arial', sans-serif;
    font-weight: 300;
    user-select: none;
}

.sfp-close-btn:hover {
    opacity: 1;
    color: #ff0000;
    transform: scale(1.1);
}

/* --- 5. CONTAINER NỘI DUNG --- */
.sfp-popup-content {
    width: 100%;
    min-height: 100%;
    display: flex;
    justify-content: center;
    /* Padding để nội dung không bị nút X đè lên trên mobile */
    padding: 80px 20px 40px 20px; 
    box-sizing: border-box;
}

.sfp-container-inner {
    width: 100%;
    max-width: 850px; /* Độ rộng lý tưởng để đọc văn bản */
    position: relative;
    text-align: left;
    background: #ffffff;
}

/* Tối ưu hình ảnh trong nội dung popup */
.sfp-container-inner img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 4px;
}

/* Tương thích với các block văn bản WordPress */
.sfp-container-inner p {
    line-height: 1.7;
    font-size: 17px;
    color: #222;
}

/* Responsive cho thiết bị nhỏ */
@media (max-width: 600px) {
    .sfp-close-btn {
        top: 10px;
        right: 15px;
        font-size: 40px;
    }
    .sfp-popup-content {
        padding-top: 60px;
    }
}