/* ============================================================================
   WIDGET STYLES - Trivia and Released This Day
   ============================================================================ */

/* Trivia Widget */
.sidebar-section.trivia {
  /* Inherits sidebar-section styling */
}

#trivia-widget {
  font-size: 0.95rem;
  line-height: 1.5;
}

.trivia-text {
  margin: 0 0 0.5rem 0;
  color: #333;
}

.trivia-category {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #666;
  padding: 0.2rem 0.5rem;
  background: #f0f0f0;
  border-radius: 3px;
}

/* Released This Day Widget */
.sidebar-section.released-today {
  /* Inherits sidebar-section styling */
}

#released-today-widget {
  font-size: 0.9rem;
}

.release-item {
  padding: 0.75rem 0;
  border-bottom: 1px solid #eee;
}

.release-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.release-title {
  display: block;
  font-weight: 600;
  font-size: 1.1rem;
  color: #0066cc;
  text-decoration: none;
  margin-bottom: 0.35rem;
  line-height: 1.3;
}

.release-title:hover {
  text-decoration: underline;
}

.release-code {
  display: block;
  font-size: 0.85rem;
  color: #666;
  font-family: monospace;
  margin-bottom: 0.25rem;
}

.release-date {
  display: block;
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 0.25rem;
}

.release-credits {
  display: block;
  font-size: 0.8rem;
  color: #999;
  font-style: italic;
}

/* Widget States */
.widget-loading,
.widget-empty,
.widget-error {
  font-size: 0.9rem;
  color: #999;
  font-style: italic;
}

.widget-error {
  color: #cc0000;
}