body { 
    margin: 0; 
    padding: 40px; 
    font-family: Arial, Helvetica, sans-serif; 
    background: #fafafa; 
    color: #333; 
    font-size: 10pt;
}

/* Full News Feed Styles */
.snp-news-feed { 
    max-width: 800px; 
    margin: 0 auto; 
    background: #fff; 
    padding: 30px; 
    border-radius: 12px; 
    box-shadow: 0 4px 10px rgba(0,0,0,0.05); 
}

.snp-post { 
    padding: 20px 0; 
    border-bottom: 1px solid #eee;
    border-left: 3px solid transparent;
    padding-left: 15px;
}

.snp-post:last-child { 
    border-bottom: none; 
}

/* Category-specific colours for full news */
.snp-post.snp-category-feature { 
    border-left-color: #28a745; /* Green for Feature */
}

.snp-post.snp-category-update { 
    border-left-color: #007cba; /* Blue for Update */
}

.snp-post.snp-category-alert { 
    border-left-color: #dc3545; /* Red for Alert */
}

.snp-title { 
    margin: 0 0 6px; 
    font-size: 14pt; 
    font-weight: bold; 
    color: #222;
    display: flex;
    align-items: center;
}

.snp-title-icon {
    margin-right: 8px;
    font-size: 14pt;
}

.snp-date { 
    font-size: 10pt; 
    color: #888; 
    margin-bottom: 6px; 
}

.snp-content { 
    font-size: 10pt; 
    line-height: 1.1; 
    color: #444; 
}
/* Latest News Card Styles (compact format) */
.snp-latest-card { 
    max-width: 350px; 
    max-height: 330px;
    margin: 0 auto; 
    background: #fff; 
    padding: 15px; 
    border-radius: 6px; 
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    border-left: 3px solid #007cba;
    overflow: hidden;
}

.snp-latest-card h2 {
	padding-bottom:0;
}

/* Category-specific colours */
.snp-latest-card.snp-category-feature { 
    border-left-color: #28a745; /* Green for Feature */
}

.snp-latest-card.snp-category-update { 
    border-left-color: #007cba; /* Blue for Update */
}

.snp-latest-card.snp-category-alert { 
    border-left-color: #dc3545; /* Red for Alert */
}

.snp-card-title { 
    margin: 0; 
    font-size: 11pt; 
    font-weight: bold; 
    color: #222; 
    line-height: 1.2;
    display: flex;
    align-items: center;
}

.snp-card-icon {
    margin-right: 6px;
    font-size: 12pt;
}

.snp-card-date { 
    font-size: 8pt; 
    color: #666; 
	font-style:italic;
    margin: 0;
	padding-bottom:0;
}

.snp-card-preview { 
    font-size: 9pt; 
    line-height: 1.3; 
    color: #444; 
    margin: 0;
}

/* General styles */
.snp-none { 
    font-size: 1.2em; 
    text-align: center; 
    color: #999; 
}

.li { 
    list-style-type: circle; 
}