/**
 * Category Page - Base Styles
 * Breadcrumb, main container, loading states, pagination
 */

/* Breadcrumb styles moved to main_styles.css */

/* Articles Main Container */
.articles-main-container {
  padding: 0 0 50px;
  background: #fff;
}

/* Loading State */
.loading-container {
  padding: 100px 0;
  text-align: center;
}
.loading-container .spinner {
  width: 44px;
  height: 44px;
  border: 3px solid #e9ecef;
  border-top: 3px solid #14bdee;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 16px;
}
.loading-container p {
  color: #999;
  font-size: 0.95rem;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* No Articles */
.no-articles {
  grid-column: 1 / -1;
  padding: 60px 20px;
  text-align: center;
  background: #f8f9fa;
  border-radius: 8px;
  color: #666;
}

/* Pagination */
.pagination-container {
  padding: 30px 0 60px;
}
.pagination-container nav {
  display: flex;
  justify-content: flex-end;
}
.pagination {
  display: flex;
  gap: 8px;
}
.pagination .page-link {
  padding: 10px 18px;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  color: #2c3e50;
  text-decoration: none;
  transition: all 0.2s ease;
}
.pagination .page-link:hover {
  background: #14bdee;
  border-color: #14bdee;
  color: #fff;
}
.pagination .page-item.active .page-link {
  background: #14bdee;
  border-color: #14bdee;
  color: #fff;
}
.pagination .page-item.disabled .page-link {
  color: #ccc;
  pointer-events: none;
}

