/* 下載專區 — 列表樣式（版面共用 qna.css） */

.download-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.download-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid #e8ecef;
  border-radius: 8px;
  background: #fff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.download-item:hover {
  border-color: #dce9df;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.download-item-main {
  flex: 1;
  min-width: 0;
}

.download-item-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 6px;
}

.download-badge {
  display: inline-block;
  padding: 2px 10px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #1e7e34;
  background: #eaf7ec;
  border-radius: 999px;
  line-height: 1.5;
}

.download-badge--alt {
  color: #0c5460;
  background: #e8f6f8;
}

.download-date {
  font-size: 0.8125rem;
  color: #888;
}

.download-title {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #222;
  line-height: 1.55;
  word-break: break-word;
}

.download-item-actions {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 8px;
}

.download-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #f5f8fa;
  border: 1px solid #e8ecef;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.download-link:hover {
  background: #eef8f0;
  border-color: #c8e6c9;
}

.download-link img {
  max-width: 22px;
  max-height: 22px;
}

.download-empty {
  padding: 40px 20px;
  text-align: center;
  color: #999;
  background: #fafafa;
  border: 1px dashed #ddd;
  border-radius: 8px;
}

.download-pagination {
  margin-top: 24px;
}

.download-pagination .pagination {
  margin-bottom: 0;
}

.download-pagination .page-link {
  color: #28a745;
  border-color: #dcefe0;
  font-size: 0.875rem;
  padding: 0.4rem 0.75rem;
}

.download-pagination .page-item.active .page-link {
  background-color: #28a745;
  border-color: #28a745;
}

.download-pagination .page-link:hover {
  color: #1e7e34;
  background-color: #f5faf6;
  border-color: #c8e6c9;
}

.download-pagination .page-item.disabled .page-link {
  color: #aaa;
}

@media (max-width: 768px) {
  .download-item {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 14px;
  }

  .download-item-actions {
    width: 100%;
    padding-top: 4px;
    border-top: 1px solid #f0f0f0;
  }
}
