/* Glass Container Styles */
.glass-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 10px;
  box-sizing: border-box;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease;
}

.glass-container:hover {
  transform: scale(1.02);
  z-index: 10;
}

.glass-container-circle {
  aspect-ratio: 1 / 1;
  /* Force perfect square ratio */
  flex-shrink: 0;
  flex-grow: 0;
}

.glass-container-pill {
  flex-shrink: 0;
  flex-grow: 0;
}

/* Glass Button Styles */
.glass-button {
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  pointer-events: auto;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1.2), box-shadow 0.3s ease;
}

.glass-button:hover {
  transform: scale(1.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  z-index: 20;
}

.glass-button:active {
  transform: scale(0.95);
}

.glass-button-circle {
  aspect-ratio: 1 / 1;
  /* Force perfect square ratio */
  flex-shrink: 0;
  flex-grow: 0;
}

.glass-button-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
  font-weight: normal;
  color: #1d1d1f;
  font-family: system-ui, -apple-system, sans-serif;
  white-space: nowrap;
}