/* Empty States - Consistente empty state designs */
.empty-state {
  text-align: center;
  padding: 48px 24px;
  background: rgba(30, 41, 59, 0.4);
  border: 1px dashed rgba(148, 163, 184, 0.3);
  border-radius: 16px;
  margin: 32px 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.empty-state-icon {
  font-size: 4rem;
  margin-bottom: 16px;
  opacity: 0.6;
  display: block;
}

.empty-state-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #e5e7eb;
  margin: 0 0 12px 0;
}

.empty-state-description {
  font-size: 0.95rem;
  color: #94a3b8;
  margin: 0 0 24px 0;
  line-height: 1.6;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.empty-state-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Search empty state */
.empty-state-search {
  border-color: rgba(59, 130, 246, 0.3);
  background: rgba(59, 130, 246, 0.05);
}

.empty-state-search .empty-state-icon {
  opacity: 0.5;
}

/* Error empty state */
.empty-state-error {
  border-color: rgba(239, 68, 68, 0.3);
  background: rgba(239, 68, 68, 0.05);
}

/* Success empty state */
.empty-state-success {
  border-color: rgba(34, 197, 94, 0.3);
  background: rgba(34, 197, 94, 0.05);
}

/* Light mode */
body.light .empty-state {
  background: rgba(249, 250, 251, 0.6);
  border-color: rgba(156, 163, 175, 0.3);
}

body.light .empty-state-title {
  color: #111827;
}

body.light .empty-state-description {
  color: #6b7280;
}

body.light .empty-state-search {
  background: rgba(59, 130, 246, 0.05);
  border-color: rgba(59, 130, 246, 0.2);
}

body.light .empty-state-error {
  background: rgba(239, 68, 68, 0.05);
  border-color: rgba(239, 68, 68, 0.2);
}

body.light .empty-state-success {
  background: rgba(34, 197, 94, 0.05);
  border-color: rgba(34, 197, 94, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
  .empty-state {
    padding: 32px 16px;
    margin: 24px 0;
  }
  
  .empty-state-icon {
    font-size: 3rem;
  }
  
  .empty-state-title {
    font-size: 1.1rem;
  }
  
  .empty-state-description {
    font-size: 0.9rem;
  }
  
  .empty-state-actions {
    flex-direction: column;
  }
  
  .empty-state-actions .btn {
    width: 100%;
    max-width: 300px;
  }
}

