body {
  margin: 0;
  background: var(--tblr-body-bg);
}

.card-title {
  font-size: 1.125rem;
}

.signin-logo {
  width: 4.5rem;
  height: 4.5rem;
  max-width: none;
}

.device-action-btn {
  width: 1.75rem;
  height: 1.75rem;
  min-width: 1.75rem;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.activity-dot {
  width: 0.5rem;
  height: 0.5rem;
  min-width: 0.5rem;
  border-radius: 999px;
  display: inline-block;
}

.activity-dot-active {
  background-color: var(--tblr-green);
}

.activity-dot-inactive {
  background-color: var(--tblr-gray-500);
}

.devices-sort-button {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  cursor: pointer;
}

.devices-sort-button-end {
  justify-content: flex-end;
  width: 100%;
}

.devices-sort-button:focus-visible {
  outline: 2px solid var(--tblr-primary);
  outline-offset: 2px;
}

.devices-sort-indicator {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--tblr-secondary);
  flex-shrink: 0;
}

.devices-sort-indicator:not(:empty) {
  width: 0.875rem;
  height: 0.875rem;
}

.devices-sort-indicator svg {
  display: block;
}

.devices-sort-label {
  text-decoration: underline;
}

#devicesTableWrap thead th,
#devicesTableWrap .devices-sort-button,
#devicesTableWrap .devices-sort-label {
  text-transform: uppercase;
}

.downloads {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.download {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid var(--tblr-border-color);
  border-radius: 0.9rem;
  background: var(--tblr-bg-surface);
  color: var(--tblr-body-color);
  text-decoration: none;
  padding: 0.75rem 1.1rem;
  transition: transform 0.15s ease, border-color 0.15s ease;
}

.download:hover {
  transform: translateY(-1px);
  border-color: var(--tblr-primary);
  color: var(--tblr-body-color);
}

.download svg {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
}

.download-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.download-text small {
  font-size: 0.72rem;
  color: var(--tblr-secondary);
}

.download-text strong {
  font-size: 0.98rem;
  font-weight: 700;
}
