/* Spectroi Custom RSS Feed Styles */
.opera-feed-container { background-color: #212121; font-family: sans-serif; padding: 8px 0; border-radius: 8px; }
.opera-feed-item { padding: 12px 16px; border-bottom: 1px solid #3d3d3d; }
.opera-feed-item:last-child { border-bottom: none; }
.opera-feed-header { margin-bottom: 8px; display: flex; align-items: center; }
.opera-favicon { width: 16px; height: 16px; margin-right: 8px; border-radius: 2px; }
.opera-feed-source { font-size: 13px; color: #aaa; }
.opera-feed-main { display: flex; justify-content: space-between; gap: 16px; align-items: flex-start; }
.opera-feed-content { flex-grow: 1; }
.opera-feed-title { margin: 0; font-size: 18px; line-height: 1.4; }
.opera-feed-title a { color: #fff; text-decoration: none; font-weight: bold; }
.opera-feed-title a:hover { text-decoration: underline; }
.opera-feed-meta { margin-top: 8px; font-size: 12px; color: #888; }
.opera-feed-image { flex-shrink: 0; width: 80px; height: 80px; }
.opera-feed-image img { width: 100%; height: 100%; object-fit: cover; border-radius: 8px; display: block; }
img.lazy { opacity: 0; transition: opacity 0.5s ease-in-out; }
img.lazy-loaded { opacity: 1; }
#feed-load-more-trigger { text-align: center; padding: 20px; color: #888; font-size: 14px; }
.spinner { border: 4px solid #f3f3f3; border-top: 4px solid #888; border-radius: 50%; width: 30px; height: 30px; animation: spin 1s linear infinite; margin: 0 auto; display: none; }
#feed-load-more-trigger.loading .spinner { display: block; }
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }