.custom-accordion .accordion-button:focus {
  box-shadow: none;
}

.custom-accordion .accordion-button:not(.collapsed) {
  background-color: transparent;
}

.accordion-button {
  color: inherit;
  background-color: transparent;
}

.accordion-button:not(.collapsed) {
  color: inherit;
  background-color: transparent;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-button::after {
  filter: none;
}

.accordion-button:not(.collapsed)::after {
  filter: none;
}

.accordion-button {
  width: 100%;
}

.google-input {
  position: relative;
  margin-top: 1.5rem;
  width: 100%;
}

/* Inputs y Selects */
.google-input input,
.google-input select {
  width: 100%;
  border: none;
  border-bottom: 1px solid #ccc;
  /* línea inferior */
  outline: none;
  font-size: 16px;
  padding: 8px 0;
  background: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* InputGroupText conserva estilo de Reactstrap */
.google-input .input-group-text {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #ccc;
  border-radius: 0;
  padding: 8px;
}

/* Label flotante */
.google-input label {
  position: absolute;
  top: 8px;
  left: 0;
  font-size: 16px;
  color: #999;
  pointer-events: none;
  transition: all 0.2s ease-out;
}

/* Label se mueve solo si tiene la clase move-left */
.google-input.move-left input:focus+label,
.google-input.move-left input:not(:placeholder-shown)+label,
.google-input.move-left select:focus+label,
.google-input.move-left select:not([value=""])+label {
  top: -12px;
  left: -40px;
  /* mueve a la izquierda */
  font-size: 14px;
  color: #08477aff;
}

/* Label normal (sin movimiento a la izquierda) */
.google-input:not(.move-left) input:focus+label,
.google-input:not(.move-left) input:not(:placeholder-shown)+label,
.google-input:not(.move-left) select:focus+label,
.google-input:not(.move-left) select:not([value=""])+label {
  top: -12px;
  left: 0;
  /* no se mueve */
  font-size: 14px;
  color: #08477aff;
}

/* Flecha personalizada para selects */
.google-input .arrow {
  position: absolute;
  top: 50%;
  right: 0;
  width: 0;
  height: 0;
  pointer-events: none;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #999;
  transform: translateY(-50%);
  transition: all 0.2s;
}

.google-input select:focus~.arrow {
  border-top-color: #08477aff;
}

.button-click-effect {
  transition: transform 0.2s ease;
  /* transición suave */
}

.button-click-effect:active {
  transform: scale(1.05);
  /* agranda 5% al hacer click */
}