/* === Plugin Filter === */
.plugin-filter-container {
  margin-top: 1rem;
}
.plugin-filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}
.plugin-filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.plugin-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.875rem;
  border-radius: 9999px;
  border: 1px solid #e5e7eb;
  background: transparent;
  font-size: 0.875rem;
  font-weight: 500;
  color: #6b7280;
  cursor: pointer;
  transition: all 0.15s ease;
}
.plugin-filter-btn:hover {
  border-color: #d1d5db;
  background: #f9fafb;
  color: #374151;
}
.plugin-filter-btn.active {
  border-color: #3b82f6;
  background: #eff6ff;
  color: #2563eb;
}
html[class~="dark"] .plugin-filter-btn {
  border-color: #374151;
  color: #9ca3af;
}
html[class~="dark"] .plugin-filter-btn:hover {
  border-color: #4b5563;
  background: #1f2937;
  color: #d1d5db;
}
html[class~="dark"] .plugin-filter-btn.active {
  border-color: #3b82f6;
  background: rgba(59, 130, 246, 0.1);
  color: #60a5fa;
}
.plugin-provider-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.plugin-provider-aws { background-color: #f97316; }
.plugin-provider-azure { background-color: #3b82f6; }
.plugin-provider-cloudagnostic { background-color: #22c55e; }
.plugin-search-input {
  padding: 0.375rem 0.75rem;
  border-radius: 0.375rem;
  border: 1px solid #e5e7eb;
  font-size: 0.875rem;
  color: #374151;
  background: transparent;
  outline: none;
  width: 200px;
  transition: border-color 0.15s ease;
}
.plugin-search-input:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.3);
}
html[class~="dark"] .plugin-search-input {
  border-color: #374151;
  color: #d1d5db;
}
html[class~="dark"] .plugin-search-input:focus {
  border-color: #3b82f6;
}
.plugin-no-results {
  padding: 2rem;
  text-align: center;
  color: #9ca3af;
  font-size: 0.875rem;
}
@media (max-width: 640px) {
  .plugin-filter-bar {
    flex-direction: column;
    align-items: stretch;
  }
  .plugin-search-input {
    width: 100%;
  }
}

/* Documentation tables — full width with consistent cell padding */
article table,
.prose table,
.hextra-content table {
  display: table !important;
  width: 100% !important;
  table-layout: auto !important;
}
article table th:first-child,
article table td:first-child {
  padding-left: 0.75rem !important;
}
article table th:last-child,
article table td:last-child {
  padding-right: 0.75rem !important;
}
article table th,
article table td {
  padding: 0.5rem 0.75rem !important;
}