/* AI Blog Content Styling - Safe and Secure */
.ai-blog-content {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 100%;
}

/* Headings */
.ai-blog-heading-1 {
    color: #2c3e50;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
    border-bottom: 3px solid #3498db;
    padding-bottom: 10px;
}

.ai-blog-heading-2 {
    color: #2c3e50;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.ai-blog-heading-3 {
    color: #2c3e50;
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: 600;
}

.ai-blog-heading-4,
.ai-blog-heading-5,
.ai-blog-heading-6 {
    color: #2c3e50;
    margin-top: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

/* Emphasis and Strong */
.ai-blog-emphasis {
    color: #e74c3c;
    font-weight: 600;
}

.ai-blog-section-title {
    color: #e74c3c;
    font-size: 1.1em;
    display: block;
    margin: 20px 0 10px 0;
    font-weight: 600;
}

.ai-blog-italic {
    color: #2980b9;
    font-style: italic;
    font-weight: 500;
}

/* Paragraphs */
.ai-blog-paragraph {
    margin-bottom: 15px;
    line-height: 1.6;
    text-align: justify;
}

/* Lists */
.ai-blog-list {
    margin-left: 20px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.ai-blog-list-item {
    margin-bottom: 8px;
}

/* Tables */
.ai-blog-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.ai-blog-table-header {
    background-color: #3498db;
    color: white;
    padding: 12px;
    border: 1px solid #ddd;
    font-weight: 600;
}

.ai-blog-table-cell {
    padding: 12px;
    border: 1px solid #ddd;
}

/* Priority indicators from LLM content */
.ai-blog-content .priority-indicator {
    display: inline-block;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 0.9em;
    font-weight: 500;
}

/* Responsive design */
@media (max-width: 768px) {
    .ai-blog-content {
        padding: 10px;
    }
    
    .ai-blog-heading-1,
    .ai-blog-heading-2,
    .ai-blog-heading-3 {
        margin-top: 20px;
    }
    
    .ai-blog-list {
        margin-left: 15px;
    }
}