@charset "utf-8";
/* CSS Document */

/*arizona business database*/

.azbd_primary {
	color:#662d91;
}

.azbd_secondary {
	color:#2d1144;
}

.azbd_highlight {
	color:#fbb040;
}

.azbd_primary_bg {
	background-color:#662d91;
}

.button_azbd {
	background: #fbb040;
	border: none;
	color: #2d1144;
	padding: 10px 25px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	/*font-size: 1em;*/
	margin: 4px 2px;
	cursor: pointer;
}

.button_azbd a, .button_azbd a:visited {
	color: #2d1144;
}

/*business profile*/

/* Base button enhancement */
.btn-sbaz {
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    transform 0.1s ease,
    box-shadow 0.1s ease,
    opacity 0.2s ease;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Hover state */
.btn-sbaz:hover:not(.disabled):not(:disabled) {
  background-color: #662d91; /* azbd brand color */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transform: translateY(-1px);
}

/* Active / pressed */
.btn-sbaz:active:not(.disabled):not(:disabled) {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

/* Disabled state */
.btn-sbaz.disabled,
.btn-sbaz:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

/* Spinner inside button */
.btn-spinner {
  display: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-top-color: rgba(255, 255, 255, 1);
  margin-left: 8px;
  box-sizing: border-box;
  animation: btn-spin 0.6s linear infinite;
}

/* When loading, show spinner */
.btn-sbaz.is-loading .btn-spinner {
  display: inline-block;
}

/* Slightly dim text while loading */
.btn-sbaz.is-loading .btn-text {
  opacity: 0.9;
}

@keyframes btn-spin {
  to {
    transform: rotate(360deg);
  }
}

