/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

.filters {
  display: flex;
  gap: 2rem;
  margin-bottom: 1rem;
}

.filters a.active {
  color: var(--text-main);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.list-item-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.empty-results {
  color: var(--text-light);
  font-style: italic;
  text-align: center;
}

.entry-list-item {
  display: flex;
  gap: 50px;
  align-items: center;
}

.entry-title {
  flex-grow: 1;
}

.entry-list-item.unseen .entry-author,
.entry-list-item.unseen .entry-title {
  font-weight: bold;
}

.feed-list-item {
  gap: 50px;
  display: flex;
}

.feed-title {
  flex-grow: 1;
}

.feed-last-fetched-at {
  color: var(--text-light);
  font-style: italic;
}

.read-later-button {
  margin-bottom: 0;
}

.read-later-icon {
  height: 1rem;
  width: 1rem;
}

.read-later-icon.active {
  fill: var(--accent-text);
}
