.pdf-list {
  max-width: 600px;
  margin: 30px auto;
  padding: 0 15px;
}

.pdf-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #ddd;
  padding: 12px 15px;
  border-radius: 6px;
  margin-bottom: 12px;
  background: #fafafa;
  transition: background 0.3s ease;
}

.pdf-item:hover {
  background: #f0f8ff;
}

.pdf-name {
  font-size: 16px;
  font-weight: 500;
  color: #333;
  word-break: break-word;
}

.pdf-actions {
  display: flex;
  gap: 15px;
}

.pdf-actions a {
  text-decoration: none;
  font-size: 20px;
  color: #555;
  transition: color 0.3s ease;
}

.pdf-actions a:hover {
  color: #007bff;
}

.pdf-actions svg {
  vertical-align: middle;
}

/* ✅ Responsive */
@media (max-width: 600px) {
  .pdf-item {
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
  }

  .pdf-actions {
    justify-content: flex-start;
  }
}
