body {
  background-color: #f8f9fa;
}

.post-card {
  border: none;
  border-radius: 1rem;
  overflow: hidden;
  transition: transform 0.3s;
}
.post-card .btn {
  font-size: 1.6rem;
}

.post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.post-thumbnail {
  height: 200px;
  object-fit: cover;
  width: 100%;
}

.sidebar-section {
  background-color: white;
  border-radius: 0.75rem;
  padding: 1rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.03);
}

.sidebar-section h5 {
  border-bottom: 1px solid #dee2e6;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

.pagination .page-link {
  font-size: 1.6rem;
}
