.blurEffect {
  --webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
  background-color: var(--glass-effect-color);
  box-shadow: inset 0 0 1px var(--glass-effect-box-shadow);
}

/* ====== Header ====== */
header {
  width: 100%;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  z-index: 9998;
  padding: 10px;
  box-sizing: border-box;
  gap: 6px;
  /* background-image: linear-gradient(
    to bottom,
    rgba(240, 240, 240, 0.9) 0%,
    rgba(220, 220, 220, 0.7) 40%,
    rgba(200, 200, 200, 0.3) 70%,
    rgba(232, 232, 237, 0.0) 100%
  );

  --webkit-backdrop-filter: blur(1px);
  backdrop-filter: blur(1px); */
}

.headerBtnContainer {
  height: 48px;
  width: auto;
  display: flex;
  align-self: center;
  justify-content: center;
  border-radius: 32px;
}

.headerBtn {
  width: 48px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: none;
  border-radius: 32px;
  cursor: pointer;
}

.headerBtnIcon {
  width: 18.5px;
  aspect-ratio: 1;
  fill: var(--primary-description-text-color);
  stroke: var(--primary-description-text-color);
}
