/* Estilos del botón */
.btn-paypal {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* El degradado amarillo/dorado similar a la imagen */
    background: linear-gradient(90deg, #ffde6b 0%, #ffc439 100%);
    border-radius: 50px; /* Bordes completamente redondeados */
    padding: 12px 40px;
    text-decoration: none !important;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: bold;
    font-size: 18px;
    color: #003087 !important; /* El azul oscuro oficial de PayPal */
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1); /* Sombra suave opcional */
    transition: transform 0.1s ease;
    line-height: normal; /* Reset line-height to avoid layout issues */
}

/* Efecto al hacer clic */
.btn-paypal:active {
    transform: scale(0.98);
}

/* Estilos para el icono SVG */
.btn-paypal svg {
    width: 20px;
    height: 20px;
    margin-right: 10px; /* Espacio entre el logo y el texto */
    fill: #003087; /* Asegurar color por defecto si no toma el fill del SVG */
}

/* Switch Toggle Styles */
.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
  vertical-align: middle;
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2271b1;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2271b1;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}
