/**
* Nvzn AR Button Styles
*/
.nvznart-arbutton-container {
  visibility: visible;
  display: flex;
  width: 100%;
  margin: 0px;
  padding: 0px;
  justify-content: center;
  border: none;
}

.nvznart-arbutton-container.remove {
  visibility: hidden;
  display: none;
}

.nvznart-arbutton-container.show .nvznart-arbutton {
  display: inline-flex;

  /* Colors & appearance */
  background-color: #1c1d1e;
  color: white;
  border: none;
  border-radius: 4px;

  /* Sizing & spacing */
  padding: 0px;
  margin: 0px;
  width: 100%;
  height: 50px;
  min-width: min-content;
  align-items: center;
  justify-content: center;

  /* Typography */
  font-family: 'Twentieth Century', sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 19.88px;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 4.2px;
  text-decoration: none;

  /* Behavior */
  cursor: pointer;
  transition: background-color 0.2s ease;
}

/* Icon - icon sizing and positioning */
.nvznart-arbutton-icon {
  width: 26px;
  height: 26px;
  margin-right: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* SVG - layout */
.nvznart-arbutton-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: currentColor;
  stroke: currentColor;
}

/* Button text layout */
.nvznart-arbutton-text {
  display: inline-block;
  white-space: nowrap;
}

/* Hover & active states */
.nvznart-arbutton:hover {
  background-color: #555;
}

.nvznart-arbutton-container.show .nvznart-arbutton:hover {
  background-color: #555;
}

.nvznart-arbutton:active {
  background-color: #333;
}

.nvznart-arbutton-container.show .nvznart-arbutton:active {
  background-color: #333;
}

/* Disabled state styling */
.nvznart-arbutton[disabled] {
  opacity: 0.3;
  pointer-events: none;
}
