.recent-activity-section {
  padding: 24px 0;
  margin-top: 32px;
}

.recent-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.recent-table caption {
  font-weight: 600;
  font-size: 1.2rem;
  padding: 0.8rem;
  text-align: left;
  caption-side: top;
  color: var(--primary-dark);
}
.recent-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(120, 100, 63, 0.35);
  font-size: 0.9rem;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(212, 165, 116, 0.2);
}

.recent-table thead {
  background: rgba(107, 63, 58, 0.5);
  color: white;
  backdrop-filter: blur(4px);
}

.recent-table th {
  padding: 14px 16px;
  text-align: left;
  font-weight: 600;
  white-space: nowrap;
  color: white;
}

.recent-table tbody tr {
  border-bottom: 1px solid rgba(212, 165, 116, 0.15);
  transition: background 0.2s;
}

.recent-table tbody tr:hover {
  background: rgba(212, 165, 116, 0.15);
}

.recent-table tbody tr:last-child {
  border-bottom: none;
}

.recent-table td {
  padding: 14px 16px;
  color: var(--primary-dark);
}

.recent-cover {
  width: 50px;
  height: 70px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  display: block;
}

.recent-title {
  font-weight: 500;
  max-width: 300px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.recent-author {
  color: #666;
}

.view-btn {
  padding: 8px 14px;
  border-radius: 999px;
  background: #ececec;
  color: var(--accent);
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
}

.view-btn:hover {
  transform: translateY(-2px);
  background: var(--primary);
  color: white;
}

.recent-table .muted {
  text-align: center;
  padding: 24px;
  opacity: 0.7;
}

@media (max-width: 768px) {
  .recent-table {
    font-size: 0.85rem;
  }
  .recent-table th,
  .recent-table td {
    padding: 10px 12px;
  }
  .recent-cover {
    width: 40px;
    height: 55px;
  }
  .recent-title {
    max-width: 140px;
  }
}

@media (max-width: 480px) {
  .recent-title {
    max-width: 110px;
  }
}
