/* WebP Converter — tool-specific styles */

.file-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.file-list .file-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.file-thumb {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg-alt);
  flex-shrink: 0;
}

.file-meta {
  flex: 1;
  min-width: 0;
}

.file-name {
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.file-sizes {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.size-saved {
  color: #10b981;
  font-weight: 600;
}

.size-grew {
  color: #f59e0b;
  font-weight: 600;
}

.file-download {
  flex-shrink: 0;
}

.convert-actions {
  margin-top: 1rem;
}

@media (max-width: 480px) {
  .file-sizes { font-size: 0.72rem; }
}
