/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jan 12 2026 | 18:11:39 */
/* =========================
   Global Button Styling
   Ranch of Questionable Choices
   ========================= */

/* Base button reset */
button,
input[type="submit"],
.wp-block-button__link,
.gb-button,
a.gb-button {
  appearance: none;
  border: 1px solid rgba(0, 0, 0, 25%);
  background-color: transparent;
  color: inherit;
  font-family: inherit;
  font-size: 0.9rem;
  line-height: 1.2;
  padding: 0.55em 1.2em;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    transform 0.15s ease;
}

/* Remove heavy default shadows */
button,
.wp-block-button__link,
.gb-button {
  box-shadow: none;
}

/* Hover / focus state */
button:hover,
button:focus,
.wp-block-button__link:hover,
.wp-block-button__link:focus,
.gb-button:hover,
.gb-button:focus,
a.gb-button:hover,
a.gb-button:focus {
  background-color: rgba(0, 0, 0, 4%);
  border-color: rgba(0, 0, 0, 4%);
  color: inherit;
  transform: translateY(-1px);
  outline: none;
}

/* Active / pressed state */
button:active,
.wp-block-button__link:active,
.gb-button:active {
  transform: translateY(0);
  background-color: rgba(0, 0, 0, 6%);
}

/* Disabled buttons */
button:disabled,
.wp-block-button__link.disabled,
.gb-button.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}


