/* Try It Out Button Styles - positioning only */
.try-it-out-button {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
}

.try-it-out-button:focus {
  outline: none;
  box-shadow: none;
}

/* Media queries for responsive design */
@media (max-width: 640px) {
  .try-it-out-button {
    top: 10px;
    right: 10px;
    font-size: 14px;
  }
}