/* Components */
.project-meta {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin: 0.5rem 0;
  line-height: 1.5;
}

.project-meta strong,
.project-meta b {
  font-weight: 700;
}

.status-done {
  color: #34d399;
}

.status-active {
  color: #60a5fa;
}

.status-paused {
  color: #fbbf24;
}

.status-archived {
  color: #f87171;
}

.project-meta span[class^="status"] {
  font-weight: 700;
}

/* Error */
.error-message,
.empty-message {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem 2rem;
  color: var(--text-secondary);
  font-size: 1.2rem;
  border: 2px solid #f87171;
  background: rgba(248, 113, 113, 0.1);
  border-radius: var(--radius-lg);
  animation: fadeInUp 0.8s ease 0.2s both;
}

.error-message small {
  display: block;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #94a3b8;
}
