/* css/empty-states.css - Estilos para empty states */

.empty-state-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  padding: 3rem 1rem;
}

.empty-state {
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}

.empty-state-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  opacity: 0.6;
}

.empty-state-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--tn-title, #0f172a);
  margin-bottom: 0.75rem;
}

.empty-state-message {
  font-size: 1rem;
  color: var(--tn-muted, #64748b);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.empty-state-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.empty-state-actions .btn {
  min-width: 150px;
}

/* Responsive */
@media (max-width: 768px) {
  .empty-state-icon {
    font-size: 3rem;
  }
  
  .empty-state-title {
    font-size: 1.25rem;
  }
  
  .empty-state-message {
    font-size: 0.9rem;
  }
  
  .empty-state-actions {
    flex-direction: column;
  }
  
  .empty-state-actions .btn {
    width: 100%;
  }
}
