.eba-ghost-button-wrapper {
  padding: 0;
  margin: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.eba-ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 20px;
  border: 1.8px solid var(--soft-orange, #f9d8c6);
  background: transparent;
  color: var(--deep-coffee, #8a5e3c);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.15s ease;
  box-shadow: none;
  outline: none;
}

.eba-ghost-button:hover,
.eba-ghost-button:focus {
  background: var(--soft-orange, #f9d8c6);
  border-color: var(--soft-orange, #f9d8c6);
  color: var(--warm-gray, #4a4a4a);
  box-shadow: none;
  outline: none;
}

.eba-ghost-button:focus-visible {
  outline: 2px solid rgba(138, 94, 60, 0.35);
  outline-offset: 2px;
}

.eba-ghost-button-align-left {
  text-align: left;
}

.eba-ghost-button-align-center {
  text-align: center;
}

.eba-ghost-button-align-right {
  text-align: right;
}

.eba-ghost-button-align-left .eba-ghost-button-wrapper {
  text-align: left;
}

.eba-ghost-button-align-center .eba-ghost-button-wrapper {
  text-align: center;
}

.eba-ghost-button-align-right .eba-ghost-button-wrapper {
  text-align: right;
}
