/* Reading Info Display - More Compact */
.reading-info {
  display: inline-block;
  margin-top: var(--spacing-sm);
  font-size: 0.85rem; /* Reduced from 0.9rem */
  color: var(--dark-gray);
  background-color: var(--light-gray);
  padding: 0.3rem 0.7rem; /* Reduced padding */
  border-radius: 16px; /* Reduced from 20px */
  transition: all var(--transition-fast);
  border: none; /* Removed border */
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03); /* Reduced shadow */
}

.dark-mode .reading-info {
  background-color: rgba(30, 30, 30, 0.8);
}

.reading-info-inner {
  display: flex;
  align-items: center;
}

.reading-time-display {
  font-weight: 500;
}

/* Animation for completion - more subtle */
@keyframes celebrate {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03); /* Reduced from 1.05 */
  }
  100% {
    transform: scale(1);
  }
}

.reading-info.complete {
  animation: celebrate 0.8s ease; /* Faster animation */
  background-color: rgba(157, 78, 221, 0.1);
}

.dark-mode .reading-info.complete {
  background-color: rgba(157, 78, 221, 0.2);
}
