html, body {
  margin: 0;
  min-height: 100%;
  background: white;
  -webkit-text-size-adjust: 100%;
}

.profile-page {
  width: 100%;
  min-height: 100vh;
  background: white;
  position: relative;
  overscroll-behavior: none;
  display: flex;
  flex-direction: column;
}

.profile-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px 0 90px;
}

.profile-page .settings-rows {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.profile-toolbar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 16px 28px;
  display: flex;
  justify-content: flex-end;
  pointer-events: none;
}

.profile-home-btn {
  width: 66px;
  height: 48px;
  background: black;
  border: none;
  border-radius: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
}

.profile-home-btn svg {
  width: 20px;
  height: 20px;
  stroke: white;
  stroke-width: 2;
  fill: none;
}
