.dyvix-btn-wrapper {
  width: fit-content;
  height: fit-content;
}
.dyvix-button {
  position: relative;
  background: #0d0d0f;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px 22px;
  color: #d3e9ff;
  border-radius: 6px;
  cursor: pointer;
  overflow: hidden;
  font-weight: 500;
  font-family: 'Geist', sans-serif;
  letter-spacing: -0.02em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.05);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.dyvix-button:hover {
  background: #161618;
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}
.dyvix-button:active {
  background: #161618;
  border-color: rgb(255, 255, 255);
  transform: translateY(2px);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}
