/* Grundlegende Container- und Layout-Anpassungen */
.tc-rss-feed-addon-container {
    margin: 40px 0;
}

/* Styling für das Filterformular */
.tc-rss-feed-addon-filter-form {
    margin-bottom: 20px;
}

.tc-rss-feed-addon-filter-label {
    font-weight: bold;
    margin-bottom: 5px;
}

.tc-rss-feed-addon-filter-select {
    width: 100%;
}

.tc-rss-feed-addon-filter-button {
    width: 100%;
}

/* Dezenter Trenner */
.tc-rss-feed-addon-divider {
    border: none;
    border-top: 1px solid #e0e0e0;
    margin: 20px 0;
}

/* Styling für die Pressemeldungen Liste */
.tc-rss-feed-addon-press-releases {
    list-style: none;
    padding: 0;
}

.tc-rss-feed-addon-press-release-item {
    /* Entferne Umrandungen und Hintergrund */
    border: none;
    background-color: transparent;
    padding: 10px 0;
    display: flex;
    align-items: flex-start;
}

.tc-rss-feed-addon-press-release-item:not(:last-child) {
    border-bottom: 1px solid #e0e0e0;
}

.tc-rss-feed-addon-press-release-title a {
    font-size: 1.2rem;
    color: #007bff;
    text-decoration: none;
    transition: color 0.2s;
}

.tc-rss-feed-addon-press-release-title a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.tc-rss-feed-addon-press-release-image img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.tc-rss-feed-addon-press-release-description {
    font-size: 1rem;
    color: #333333;
    margin-top: 5px;
    margin-bottom: 10px;
}

.tc-rss-feed-addon-press-release-date {
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 5px;
}

.tc-rss-feed-addon-press-release-company a {
    font-size: 0.9rem;
    color: #28a745;
    text-decoration: none;
    transition: color 0.2s;
}

.tc-rss-feed-addon-press-release-company a:hover {
    color: #1e7e34;
    text-decoration: underline;
}

/* Responsive Design Anpassungen */
@media (max-width: 768px) {
    .tc-rss-feed-addon-press-release-item {
        flex-direction: column;
    }

    .tc-rss-feed-addon-press-release-image {
        margin-bottom: 10px;
    }

    .tc-rss-feed-addon-press-release-title a {
        font-size: 1.1rem;
    }

    .tc-rss-feed-addon-press-release-description {
        font-size: 0.95rem;
    }

    .tc-rss-feed-addon-press-release-company a {
        font-size: 0.85rem;
    }
}

/* Zusätzliche Anpassungen für bessere Benutzererfahrung */
.tc-rss-feed-addon-press-releases .tc-rss-feed-addon-press-release-item:last-child {
    border-bottom: none;
}

.tc-rss-feed-addon-press-release-image a {
    display: block;
}

.tc-rss-feed-addon-press-release-image img {
    transition: transform 0.2s;
}

.tc-rss-feed-addon-press-release-image img:hover {
    transform: scale(1.05);
}

/* Zusätzliche spezifische Stile für die Meta-Box im Admin */
.tc-rss-feed-addon-feed-item {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
}

.tc-rss-feed-addon-form-check {
    margin-bottom: 10px;
}

.tc-rss-feed-addon-checkbox {
    margin-right: 10px;
}

.tc-rss-feed-addon-input-number {
    margin-bottom: 5px;
}