.components-list {
  margin-top: 1rem;
}

.component-item {
  display: flex;
  align-items: center;
  padding: 1rem;
  border: 1px solid var(--border-color, #e2e8f0);
  border-radius: 8px;
  margin-bottom: 0.75rem;
  transition: all 0.2s ease;
  background-color: var(--bg-primary, #ffffff);
}

.component-item:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 8px var(--shadow-color, rgba(0, 0, 0, 0.1));
  border-color: var(--accent-color, #7c8b9d);
}

.component-icon {
  margin-right: 1rem;
  flex-shrink: 0;
}

.component-type-icon {
  font-size: 1.5rem;
  color: var(--accent-color, #7c8b9d);
  width: 2rem;
  text-align: center;
}

.component-info {
  flex: 1;
  min-width: 0;
}

.component-name {
  margin: 0 0 0.25rem 0;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
}

.component-link {
  color: var(--accent-color, #7c8b9d);
  text-decoration: none;
  transition: color 0.2s ease;
}

.component-link:hover {
  color: var(--brand-color, #dcdcdc);
  text-decoration: underline;
}

.component-private {
  color: var(--text-secondary, #64748b);
}

.component-type {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  font-weight: 500;
}

.empty-state {
  text-align: center;
  padding: 2rem 1rem;
}

.empty-icon {
  margin-bottom: 1rem;
}

.empty-icon i {
  font-size: 3rem;
  color: var(--text-muted, #94a3b8);
}

.empty-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-secondary, #64748b);
  margin-bottom: 0.5rem;
}

.empty-description {
  font-size: 0.875rem;
  margin-bottom: 0;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive design */
@media (max-width: 768px) {
  .component-item {
    padding: 0.75rem;
  }

  .component-icon {
    margin-right: 0.75rem;
  }

  .component-type-icon {
    font-size: 1.25rem;
  }

  .component-name {
    font-size: 0.9rem;
  }

  .component-type {
    font-size: 0.8rem;
  }

  .empty-state {
    padding: 1.5rem 1rem;
  }

  .empty-icon i {
    font-size: 2.5rem;
  }
}
