/* Category filter tags */
.category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 3px solid #000333 !important; /* Match the blue line below */
  justify-content: center !important; /* Force center alignment */
  align-items: center;
  width: 100%;
}

.category-tag {
  background: #000333 !important; /* Dark blue background */
  border: 2px solid #000333 !important;
  border-radius: 20px !important;
  color: #fff !important; /* White text */
  padding: 8px 16px !important; /* Equal top/bottom padding */
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  transition: all 0.3s !important;
  font-family: inherit !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1.2 !important; /* Slightly taller line height for better centering */
  vertical-align: middle !important;
}

.category-tag:hover {
  background: #001845 !important; /* Slightly lighter blue on hover */
  border-color: #3b82f6 !important;
  color: #fff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 8px rgba(0, 3, 51, 0.3) !important;
}

.category-tag.active {
  background: #3b82f6 !important; /* Bright blue for active */
  border-color: #3b82f6 !important;
  color: #fff !important;
  font-weight: 700 !important;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .category-filters {
    gap: 8px;
  }
  
  .category-tag {
    font-size: 0.85rem !important;
    padding: 5px 12px !important;
    font-weight: 700 !important;
  }
}
