/* ============================================
   EMPTY STATE - UNIFIED
   Extracted from app.ui-consistency.css
   ============================================ */

.empty-state-premium,
.empty-state {
  text-align: center;
  padding: 3rem 1.5rem;
  color: #666;
}

.empty-state-icon,
.icon-empty {
  font-size: 3.5rem;
  background: linear-gradient(135deg, rgba(255, 169, 77, 0.1) 0%, rgba(255, 169, 77, 0.1) 100%);
  color: #fff947;
  width: 5rem;
  height: 5rem;
  margin: 0 auto 1.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.empty-state-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.empty-state-description {
  color: #999;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.empty-state-action {
  background: var(--honey);
  color: var(--charcoal);
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--radius-lg);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.empty-state-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 169, 77, 0.3);
}
