.atom-feed-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background-color: #ff6600; /* Standard Feed Orange */
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-family: sans-serif;
  font-weight: 600;
  font-size: 14px;
  transition: background-color 0.2s ease;
}

.atom-feed-button:hover {
  background-color: #e65c00; /* Slightly darker orange on hover */
  text-decoration: none;
}

.feed-icon {
  /* Ensures the icon inherits the white text color */
  stroke: white; 
}
