body {
  padding: 0;
}

button {
  display: none;
  width: 100%;
  padding: 8px 0;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  border-radius: 8px;
}

p {
  border-bottom: 1px dashed #ddd;
}

/* #pictureUrl {
  margin: 0 auto;
  width: 32%;
  display: -moz-box;
  display: -webkit-box;
  display: box;
  -moz-box-pack: center;
  -moz-box-align: center;
  -webkit-box-pack: center;
  -webkit-box-align: center;
  box-pack: center;
  box-align: center;
  -moz-border-radius: 256px;
  -webkit-border-radius: 256px;
  border-radius: 256px;
} */

#accessToken,
#utouId {
  display: block;
  overflow: auto;
}

.profile-chip {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  overflow: hidden;
}
.profile-chip img {
  width: 100%;
  height: inherit;
  object-fit: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(10, 10, 12, 0.7);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid var(--line-soft);
  padding-top: env(safe-area-inset-top);
}
.topbar-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px 8px;
}

.brand img {
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 6px;
  height: 3rem;
}
