/* Custom badge styles for data source badges */
.data-badge {
  display: inline-block;
  padding: 3px 5px;
  border-radius: 3px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  font-size: 14px;
  font-weight: 600;
  font-family: "Verdana", "DejaVu Sans", sans-serif;
  text-decoration: none;
  color: #333333;
  margin-left: 0px;
  margin-right: 8px;
  vertical-align: bottom;
  transition: opacity 0.2s;
}

.data-badge:hover {
  opacity: 0.85;
  text-decoration: none;
  color: white;
}