/* 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 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); }
}

/* Dashboard distribution rows */
.dist-label {
  width: 80px;
  font-size: 13px;
  flex-shrink: 0;
}
.dist-count {
  width: 32px;
  text-align: right;
  font-size: 13px;
  color: var(--tblr-secondary);
  flex-shrink: 0;
}

/* Clickable KPI cards */
.card-link {
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.15s;
}
.card-link:hover {
  box-shadow: 0 1px 6px rgba(0,0,0,.12);
  color: inherit;
}

/* 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;
}
.btn-google:hover {
  background: #f7f8f8;
}
