/* 
Don't want to use sass and simply modify the stylesheet in the old css fashion? 
Just customize your theme here.
================================================== */

body {}

main.container{margin-bottom:50px;}
.container{padding: 0 30px;}

/* Category Filter Styles */
.category-filter-section {
  margin-top:1rem;
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid #d1d5db;
  background: white;
  border-radius: .25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #6b7280;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.filter-btn:hover {
  background: #f9fafb;
  border-color: #9ca3af;
  color: #374151;
  text-decoration: none;
}

.filter-btn.active {
  background: #1f2937;
  border-color: #1f2937;
  color: white;
}

.filter-btn.active:hover {
  background: #374151;
  border-color: #374151;
}

.filter-btn .count {
  background: rgba(0, 0, 0, 0.1);
  color: inherit;
  padding: 0.125rem 0.5rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.filter-btn.active .count {
  background: rgba(255, 255, 255, 0.2);
}

.filter-btn:focus {
  outline: none;
  box-shadow: none;
}

.filter-btn:focus-visible {
  outline: 2px solid #1f2937;
  outline-offset: 2px;
}

/* Responsive design */
@media (max-width: 768px) {
  .filter-tabs {
    justify-content: center;
  }
  
  .filter-btn {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
}