/* Custom RSS Display Plugin Styles */
.custom-rss-container {
    max-width: 100%;
    overflow: hidden;
    border: 1px solid #e1e1e1;
    box-sizing: border-box;
}

.custom-rss-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.custom-rss-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 15px;
}

.custom-rss-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.custom-rss-title {
    margin: 0 0 8px 0;
    font-size: 1.2em;
    line-height: 1.4;
    font-weight: 600;
}

.custom-rss-title a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s ease;
}

.custom-rss-title a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.custom-rss-date {
    margin: 0 0 10px 0;
    font-size: 0.85em;
    color: #666;
    font-style: italic;
}

.custom-rss-excerpt {
    margin: 0;
    line-height: 1.6;
    color: inherit;
}

.custom-rss-error {
    color: #d63638;
    background: #fcf0f1;
    border: 1px solid #d63638;
    padding: 12px;
    border-radius: 4px;
    margin: 10px 0;
}

.custom-rss-no-items {
    text-align: center;
    color: #666;
    font-style: italic;
    padding: 20px;
    margin: 0;
}

/* Responsive design */
@media (max-width: 600px) {
    .custom-rss-container {
        padding: 12px !important;
    }
    
    .custom-rss-title {
        font-size: 1.1em;
    }
    
    .custom-rss-date {
        font-size: 0.8em;
    }
}

/* Admin styles */
.custom-rss-admin .form-table th {
    width: 200px;
}

.custom-rss-admin .color-picker {
    max-width: 100px;
}