.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}
.news-controls {
  margin-bottom: 2em;
  padding-bottom: 1em;
  border-bottom: 1px solid #eee;
}
.filter-btn {
  background-color: #f0f0f0;
  border: 1px solid #ccc;
  border-radius: 15px;
  padding: 8px 15px;
  margin-right: 8px;
  margin-bottom: 8px;
  cursor: pointer;
  transition: background-color 0.2s;
}
.filter-btn:hover {
  background-color: #ddd;
}
.filter-btn.active {
  background-color: #007bff;
  color: white;
  border-color: #007bff;
}
.news-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2em;
  list-style-type: none;
  padding-left: 0;
}
/* Maak de selector specifieker om thema-stijlen te overschrijven */
#news-list .news-item .news-image {
  width: 150px;
  height: 150px;
  object-fit: cover;
  margin-right: 20px;
  border-radius: 8px;
  flex-shrink: 0;
}
.news-content {
  flex: 1;
}
.news-content h3 {
  margin-top: 0;
}
ul#news-list {
  padding-left: 0;
}
.rss-button-container {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}
.rss-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background-color: #ff6600; /* Classic RSS orange */
  color: white;
  text-decoration: none;
  border-radius: 20px;
  font-weight: bold;
  transition: background-color 0.2s;
}
.rss-button:hover {
  background-color: #e65c00;
}
.rss-button svg {
  margin-right: 8px;
}
.new-badge {
    background-color: #28a745;
    color: white;
    padding: 3px 8px;
    margin-left: 10px;
    border-radius: 5px;
    font-size: 0.8em;
    font-weight: bold;
}