.download-container {
  margin: 10rem 4rem;
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.controls {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
input[type="search"], select {
  flex: 1;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
}
.post-list {
  margin-bottom: 20px;
}
.post-item {
  display: flex;
  align-items: center;
  padding: 10px;
  border-bottom: 1px solid #eee;
}
.post-item:last-child {
  border-bottom: none;
}
.post-item input {
  margin-right: 12px;
}
.download-btn {
  background: #2563eb;
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
}
.download-btn:hover {
  background: #1d4ed8;
}
.no-results {
  color: #888;
  text-align: center;
  padding: 20px 0;
}