/* RSS Aggregator Plugin Styles */

/* Ensure images are responsive */
.entry-content img {
    max-width: 100%;
    height: auto;
}

/* Style the source information */
.rss-aggregator-meta {
    margin-top: 20px;
    padding: 15px;
    background-color: #f9f9f9;
    border-left: 4px solid #0073aa;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: inherit; /* Inherit text color based on theme */
}

.rss-aggregator-meta p {
    margin: 0 0 10px;
    font-size: 16px;
}

.rss-aggregator-meta p:last-child {
    margin-bottom: 0;
}

.rss-aggregator-meta a {
    color: #0073aa;
    text-decoration: none;
}

.rss-aggregator-meta a:hover {
    text-decoration: underline;
}

/* Improve readability */
.entry-content {
    line-height: 1.8;
    font-size: 18px;
    color: inherit; /* Inherit text color based on theme */
}

/* Responsive design for smaller screens */
@media screen and (max-width: 768px) {
    .entry-content {
        font-size: 16px;
    }

    .rss-aggregator-meta {
        padding: 10px;
    }
}

/* Dark Mode Adjustments */
@media (prefers-color-scheme: dark) {
    .rss-aggregator-meta {
        background-color: #2d2d2d;
        border-left: 4px solid #ffffff;
        color: #ffffff;
    }

    .rss-aggregator-meta a {
        color: #1e90ff;
    }

    .rss-aggregator-meta a:hover {
        color: #63b3ed;
    }

    .entry-content {
        color: #ffffff;
    }
}