/* SEO Enhance Styles */

/* 1. Reading Time */
.seo-reading-time {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* 2. Jump Link */
.seo-jump-link {
    display: inline-block;
    margin: 15px 0;
    font-weight: 600;
    color: #0073aa;
    text-decoration: underline;
    cursor: pointer;
}
.seo-jump-link:hover {
    color: #005177;
}

/* 3. Read Progress Bar */
#seo-read-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: transparent;
    z-index: 999999; /* Tăng z-index cao nhất có thể */
    pointer-events: none;
}
.admin-bar #seo-read-progress {
    top: 32px; /* Đẩy xuống nếu có Admin Bar */
}
@media screen and (max-width: 782px) {
    .admin-bar #seo-read-progress {
        top: 46px; /* Admin bar cao hơn trên mobile */
    }
}
#seo-read-progress span {
    display: block;
    height: 100%;
    width: 0%;
    background: #e74c3c; /* Màu mặc định, có thể override */
    transition: width 0.1s linear;
}

/* 4. Key Takeaway Box */
.seo-takeaway {
    background: #f8f9fa;
    border-left: 4px solid #0073aa;
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 0 4px 4px 0;
}
.seo-takeaway__title {
    font-weight: bold;
    font-size: 1.1em;
    margin-bottom: 10px;
    color: #333;
    text-transform: uppercase;
}
.seo-takeaway__content ul,
.seo-takeaway__content p {
    margin-bottom: 0;
}
.seo-takeaway__content ul {
    padding-left: 20px;
}

/* 5. Freshness Hint */
.seo-freshness-hint {
    font-size: 0.85em;
    color: #555;
    background: #fff3cd;
    border: 1px solid #ffeeba;
    padding: 5px 10px;
    border-radius: 3px;
    display: inline-block;
    margin: 10px 0;
}

/* 6. Admin Heading Optimizer (cho Back-end UI nếu cần style custom) */
.cslw-heading-check-box .error { color: #dc3232; }
.cslw-heading-check-box .warning { color: #ffb900; }
.cslw-heading-check-box ul { margin: 0; padding-left: 15px; list-style: disc; }
