.badge {
  display: inline-block;
  padding: 0.4rem 0.75rem;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  color: white;
}

.badge.active {
  background-color: var(--accent-color); /* Verde */
}

.badge.inactive {
  background-color: #ced4da; /* Gris */
  color: #495057;
}

.small-button {
  background: var(--primary-color);
  border: none;
  border-radius: 6px;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  color: white;
  cursor: pointer;
  margin-right: 0.5rem;
  transition: background 0.2s;
}

.small-button:hover {
  background: #1a5fd1;
}

.small-button.danger {
  background: #e55353;
}

.small-button.danger:hover {
  background: #c82333;
}
.toolbar {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.search-input {
  flex: 1;
  min-width: 220px;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 1rem;
}

.filter-select {
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 1rem;
  background-color: white;
  min-width: 200px;
}

.pagination {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.page-button {
  padding: 0.6rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  background-color: white;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.2s;
}

.page-button:hover {
  background-color: var(--secondary-color);
}

.page-button.active {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.page-button.disabled {
  background-color: #e9ecef;
  color: #6c757d;
  cursor: not-allowed;
}