/* Trash — modern flat design */
.trash-app {
  padding: 20px 24px;
  height: 100%;
  overflow: auto;
}

.trash-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.trash-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--space-border-subtle, rgba(0,0,0,0.06));
  transition: background 0.1s ease;
}

.trash-item:hover {
  background: var(--space-bg-hover, rgba(0,0,0,0.03));
}

.trash-item-icon {
  font-size: 22px;
  flex-shrink: 0;
  width: 28px;
  text-align: center;
}

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

.trash-item-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--space-text-primary, #111827);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.trash-item-meta {
  font-size: 11px;
  color: var(--space-text-tertiary, #9ca3af);
  margin-top: 2px;
}

.trash-empty {
  text-align: center;
  padding: 40px 20px;
  color: var(--space-text-tertiary, #9ca3af);
}

.trash-empty-icon {
  font-size: 40px;
  margin-bottom: 10px;
  display: block;
  opacity: 0.6;
}
