.news-feed {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #f8f9fa;
  border-top: 2px solid #ddd;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
  font-family: Arial, sans-serif;
  z-index: 9999; /* Garante que a barra fique acima de tudo */
}

.news-bar {
  padding: 10px;
  background: #eaeaea;
  text-align: center;
  cursor: pointer;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 40px;
}

.news-time {
  font-size: 12px;
  color: #666;
  margin-left: 10px;
}

.latest-news a {
  font-weight: bold;
  text-decoration: none;
  color: #000;
}

.news-list {
  display: none;
  padding: 10px;
  max-height: 300px;
  overflow-y: auto;
  background: white;
  border-top: 1px solid #ddd;
}

/* Garante que o footer do tema não esconda a barra */
footer {
  position: relative;
  z-index: 1;
}
