.owner-browser-toggle {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.9rem 1.25rem;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
  margin-bottom: 1rem;
}

.date-shortcuts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.date-shortcut {
  padding: 0.3rem 0.8rem;
  font-size: var(--text-xs);
  color: gray;
  text-decoration: none;
}

.date-shortcut:hover {
  border-color: green;
}

.date-shortcut.is-active {
  color: white;
  background: green;
  border-color: green;
}

.view-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  font-size: var(--text-xs);
  color: gray;
}

.view-filter {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.view-filters input {
  accent-color: green;
}

.view-filters label:hover,
.view-filters input:hover {
  cursor: pointer;
  color: green;
}

.stat-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr));
  gap: 1rem;
}

.stat-card {
  display: flex;
  flex-direction: column-reverse;
  padding: 1rem 1.25rem;
}

.stat-value {
  font-size: var(--text-lg);
}

.bar-track {
  display: inline-block;
  vertical-align: middle;
  width: 6rem;
  height: 0.5rem;
  margin-right: 0.5rem;
  background: whitesmoke;
  border-radius: 3px;
  overflow: hidden;
}

.bar-fill {
  display: block;
  height: 100%;
  background: green;
}

.bar-count {
  font-size: var(--text-xs);
  color: gray;
}

.bot-tag {
  display: inline-block;
  margin-left: 0.4rem;
  padding: 0 0.4rem;
  vertical-align: middle;
}
