/* LIQUID GLASS CORE */
.liquidGlass-wrapper {
  position: relative;
  display: flex;
  font-weight: 600;
  overflow: hidden;
  color: black;
  cursor: pointer;
  box-shadow: 0 6px 6px rgba(0, 0, 0, 0.2), 0 0 20px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 2.2);
}

.liquidGlass-effect {
  position: absolute;
  z-index: 0;
  inset: 0;
  backdrop-filter: blur(6px);
  filter: url(#glass-distortion);
  overflow: hidden;
  isolation: isolate;
}

.liquidGlass-tint {
  z-index: 1;
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.50);
}

.liquidGlass-shine {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  box-shadow:
    inset 2px 2px 1px 0 rgba(255, 255, 255, 0.5),
    inset -1px -1px 1px 1px rgba(255, 255, 255, 0.5);
}

.liquidGlass-text {
  z-index: 3;
  color: #111;
}

/* MENU SIZING */
.menu,
.menu > div {
  padding: 0.4rem;
  border-radius: 1.2rem;
}

.menu > div > div {
  font-size: 18px;
  color: inherit;
  padding: 0.2rem 0.6rem;
  border-radius: 0.6rem;
  transition: all 0.1s ease-in;
}

.menu > div > div:hover {
  background-color: rgba(255, 255, 255, 0.5);
  box-shadow: inset -2px -2px 2px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(2px);
}

/* APP HEADER */
.app-sticky-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 8px 16px;
}

.app-header-bar {
  width: 100%;
  border-radius: 16px;
}

.app-header-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.app-header-spacer {
  height: 64px;
}


