/*!
 * SmartSEO Pro Frontend Styles
 * Version: 1.0.0
 */

/* SEO Enhancement Styles */
.smartseo-optimized-content {
    /* Content styling for SEO optimized posts */
}

/* Schema Markup Styling */
.smartseo-schema {
    display: none; /* Hidden schema markup */
}

/* Meta Preview Styles */
.smartseo-meta-preview {
    border: 1px solid #ddd;
    padding: 15px;
    margin: 10px 0;
    border-radius: 4px;
    background: #f9f9f9;
}

.smartseo-meta-title {
    font-weight: bold;
    color: #1a73e8;
    font-size: 18px;
    line-height: 1.2;
    margin-bottom: 5px;
}

.smartseo-meta-url {
    color: #006621;
    font-size: 14px;
    margin-bottom: 3px;
}

.smartseo-meta-description {
    color: #545454;
    font-size: 13px;
    line-height: 1.4;
}

/* Frontend optimization indicators */
.smartseo-score-indicator {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: bold;
    color: white;
    margin-left: 5px;
}

.smartseo-score-good {
    background-color: #28a745;
}

.smartseo-score-fair {
    background-color: #ffc107;
    color: #212529;
}

.smartseo-score-poor {
    background-color: #dc3545;
}

/* Responsive design */
@media (max-width: 768px) {
    .smartseo-meta-preview {
        padding: 10px;
        margin: 5px 0;
    }
    
    .smartseo-meta-title {
        font-size: 16px;
    }
    
    .smartseo-meta-url,
    .smartseo-meta-description {
        font-size: 12px;
    }
}
