:root {
  --brand: #0d6efd;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.toolbar {
  background: #e6e6e6;
  border-bottom: 1px solid #d0d0d0;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  margin-left: 2px;
}

.toolbar .nav-pill .pill-label {
  font-size: 14px;
}

.toolbar .nav-pill:hover,
.toolbar .nav-pill:focus {
  transform: translateY(-1px);
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.24), 0 10px 24px rgba(33, 97, 255, 0.35);
  outline: none;
}

.toolbar .nav-pill:focus-visible {
  box-shadow: 0 0 0 3px rgba(48, 111, 255, 0.35), inset 0 2px 0 rgba(255, 255, 255, 0.24), 0 10px 24px rgba(33, 97, 255, 0.35);
}

.toolbar .nav-link.active {
  background: #fff;
  color: var(--brand);
  box-shadow: inset 0 0 0 1px rgba(13, 110, 253, 0.2);
}

.toolbar .nav-link:hover {
  background: #fefefe;
}

.toolbar .spacer {
  flex: 1 1 auto;
}

@media (max-width: 768px) {
  .toolbar {
    flex-wrap: wrap;
    gap: 12px;
  }

  .toolbar .brand img {
    height: 34px;
  }
}
