/* Inter Variable Font - self-hosted */
@font-face {
  font-family: 'Inter Var';
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url('/public/fonts/inter-latin-ext-wght-normal.woff2') format('woff2-variations');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Inter Var';
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url('/public/fonts/inter-latin-wght-normal.woff2') format('woff2-variations');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url('/public/fonts/inter-latin-wght-normal.woff2') format('woff2-variations');
}

/* Status dots */
.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.status-dot.green { background: var(--tblr-success); }
.status-dot.red { background: var(--tblr-danger); }
.status-dot.yellow { background: var(--tblr-warning); }
.status-dot.gray { background: var(--tblr-secondary); }

/* Health check / crawl spinner */
.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid var(--tblr-border-color);
  border-top-color: var(--tblr-primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  vertical-align: middle;
  margin-right: 6px;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* App switcher dropdown */
.navbar-brand.dropdown-toggle {
  display: flex;
  align-items: center;
}
.navbar-brand.dropdown-toggle::after {
  margin-left: 0.4rem;
  opacity: 0.6;
}
.dropdown-menu-dark .dropdown-item {
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
}
.dropdown-menu-dark .dropdown-item.active {
  background-color: rgba(255, 255, 255, 0.1);
}
.badge.bg-purple {
  background-color: #7c3aed !important;
}

/* Google login button */
.btn-google {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #3c4043;
  border: 1px solid #dadce0;
  padding: 10px 24px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
}
.btn-google:hover {
  background: #f7f8f8;
}

/* Health score gauge */
.score-gauge-wrap {
  position: relative;
  display: inline-block;
}
.gauge-label {
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
.gauge-score {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}
.gauge-text {
  display: block;
  font-size: .85rem;
  color: var(--tblr-secondary);
}

/* Claude/purple button */
.btn-purple {
  --tblr-btn-bg: #7c3aed;
  --tblr-btn-border-color: #7c3aed;
  --tblr-btn-hover-bg: #6d28d9;
  --tblr-btn-hover-border-color: #6d28d9;
  --tblr-btn-color: #fff;
  --tblr-btn-hover-color: #fff;
}
