.newsflash-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  font-family: 'Inter', sans-serif;
}

.news-date-group {
  margin-top: 2rem;
  border-bottom: 1px solid #ddd;
  color: #2965ff;
}

.newsflash-item {
  padding: 1rem 0;
  border-bottom: 1px solid #eee;
}

/* NEW and UPDATED STYLES */

.newsflash-item .top-meta {
  display: flex;
  align-items: center;
  gap: 12px; /* Creates space between timestamp and category */
  margin-bottom: 5px;
}

.newsflash-item .timestamp {
  font-size: 0.8rem;
  color: #888;
}

.news-categories a {
  font-size: 0.8rem;
  font-weight: 500;
  color: #2965ff;
  background-color: rgba(41, 101, 255, 0.1);
  padding: 3px 8px;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s;
}

.news-categories a:hover {
  background-color: rgba(41, 101, 255, 0.2);
  color: #0044ee;
}

.newsflash-item .headline {
  font-size: 1rem;
  margin: 0.3rem 0;
  color: #111;
}

.newsflash-item .summary {
  font-size: 0.95rem;
  color: #444;
}

/* STYLES FOR LOAD MORE BUTTON */

.load-more-container {
  text-align: center;
  margin-top: 2rem;
}

#load-more-news {
  background-color: #2965ff;
  color: #fff;
  border: none;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
}

#load-more-news:hover {
  background-color: #0044ee;
}

#load-more-news:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}