/* rss-widget.css */
.rss-widget {
  background: #f9f9f9;
  border: 1px solid #ddd;
  padding: 15px;
  margin: 20px 0;
  font-family: Arial, sans-serif;
}

.rss-widget h3 {
  margin-top: 0;
  font-size: 1.2em;
  color: #333;
}

.rss-list {
  list-style: none;
  padding: 0;
  margin: 10px 0 0 0;
}

.rss-item {
  margin-bottom: 15px;
  border-bottom: 1px dotted #ccc;
  padding-bottom: 10px;
}

.rss-item:last-child {
  border: none;
}

.rss-item a {
  font-weight: bold;
  color: #0066cc;
  text-decoration: none;
}

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

.rss-date {
  display: block;
  color: #999;
  font-size: 0.85em;
  margin: 3px 0;
}

.rss-desc {
  margin: 0;
  font-size: 0.95em;
  color: #555;
}