/* SEO Optimizer Frontend Styles */

/* Schema markup styling (if needed) */
.seo-optimizer-schema {
    display: none;
}

/* Breadcrumbs styling (future enhancement) */
.seo-breadcrumbs {
    font-size: 13px;
    color: #646970;
    margin-bottom: 15px;
    padding: 10px 0;
    border-bottom: 1px solid #e1e1e1;
}

.seo-breadcrumbs a {
    color: #2271b1;
    text-decoration: none;
}

.seo-breadcrumbs a:hover {
    text-decoration: underline;
}

.seo-breadcrumbs .separator {
    margin: 0 8px;
    color: #999;
}

/* Social sharing preview styling (future enhancement) */
.seo-social-preview {
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    overflow: hidden;
    max-width: 500px;
    background: white;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.seo-social-preview img {
    width: 100%;
    height: auto;
    display: block;
}

.seo-social-preview-content {
    padding: 12px;
}

.seo-social-preview-title {
    font-size: 16px;
    font-weight: 600;
    color: #1d2327;
    margin-bottom: 4px;
    line-height: 1.3;
}

.seo-social-preview-description {
    font-size: 14px;
    color: #646970;
    line-height: 1.4;
    margin-bottom: 6px;
}

.seo-social-preview-url {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
}

/* Reading time indicator (future enhancement) */
.seo-reading-time {
    font-size: 13px;
    color: #646970;
    margin-bottom: 10px;
    padding: 8px 12px;
    background: #f7f7f7;
    border-radius: 4px;
    display: inline-block;
}

.seo-reading-time:before {
    content: "⏱️ ";
    margin-right: 4px;
}

/* Article structure indicators (future enhancement) */
.seo-toc {
    background: #f8f9fa;
    border: 1px solid #e1e1e1;
    border-radius: 6px;
    padding: 20px;
    margin: 20px 0;
}

.seo-toc h3 {
    margin: 0 0 15px 0;
    font-size: 16px;
    color: #1d2327;
}

.seo-toc ul {
    margin: 0;
    padding-left: 20px;
}

.seo-toc li {
    margin-bottom: 8px;
}

.seo-toc a {
    color: #2271b1;
    text-decoration: none;
    line-height: 1.4;
}

.seo-toc a:hover {
    text-decoration: underline;
}

/* Print styles */
@media print {
    .seo-breadcrumbs,
    .seo-social-preview,
    .seo-reading-time {
        display: none;
    }
}