/*
 Theme Name:   Astra Child
 Template:     astra
 Version:      1.0
*/

/* Botón simple, centrado, estilo tipo "SUBMIT" */
.gcal-btn-wrap {
  display: flex;
  justify-content: center;
  margin: 24px 0;
}

.gcal-btn {
  display: inline-block;
  padding: 12px 24px;
  background: #C78665;         /* mismo color que tu botón "Submit" */
  color: #fff;
  text-decoration: none;
  border-radius: 12px;          /* esquinas redondeadas como en el submit */
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;        /* separa un poco las letras */
  box-shadow: 0 6px 14px rgba(0,0,0,.12);
  transition: transform .06s ease, box-shadow .2s ease, filter .2s ease;
}

.gcal-btn:hover { filter: brightness(1.05); transform: translateY(-1px); }
.gcal-btn:active { transform: none; box-shadow: 0 3px 8px rgba(0,0,0,.12); }
