/* Category page styles */
.category-link {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.category-link:hover {
  color: #6ea8fe;
  text-decoration: none;
}

.category-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  background-color: rgba(33, 37, 41, 0.05);
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  border-color: rgba(110, 168, 254, 0.4) !important;
}

/* Custom badge styles */
.category-badge {
  display: inline-block;
  padding: 0.35em 0.65em;
  font-size: 0.85em;
  font-weight: normal;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem;
  color: #fff !important;
  background-color: #6c757d;
  margin-right: 0.5rem;
  text-decoration: none;
  transition: background-color 0.2s;
}

.category-badge:hover {
  background-color: #0d6efd;
  color: #fff !important;
  text-decoration: none;
}

/* Ensure date is visible */
.post-date {
  display: block;
  color: #ffffff !important;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
}
