/* Logo */
.logo {
  height: 40px;
}

/* Input personalizado */
.linea-input {
  border: none;
  box-shadow: none;
  font-size: 1.1rem;
  color: #4a4a4a;
  padding-left: 0;
}

.linea-input::placeholder {
  color: #6c757d;
}

.linea-input:focus {
  outline: none;
  box-shadow: none;
}

/* Tabs */
.btn-group .btn {
  min-width: 200px;
}

/* Móvil/Fija buttons */
.btn-dark, .btn-outline-dark {
  border-radius: 50px !important;
}

#auto-pay-text.activo {
  color: rgb(242, 141, 21) !important;
}

.btn-activar {
  background-color: #f28d15; /* naranja */
  color: white;
  border: none;
  border-radius: 999px;
  font-size: 1.1rem;
  transition: 0.3s;
}
.btn-activar:disabled {
  background-color: #eee;
  color: #999;
}
.btn-activar i {
  font-size: 1.3rem;
}


.region-tabs-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
}

.region-tabs-wrapper::-webkit-scrollbar {
  display: none; /* Safari/Chrome */
}

.region-tabs {
  min-width: max-content;
  scroll-snap-type: x mandatory;
}

.tab-btn {
  scroll-snap-align: start;
  background-color: #f3f3f3;
  color: #00a6ed;
  border: none;
  border-radius: 999px;
  padding: 8px 20px;
  font-weight: 500;
  white-space: nowrap;
  transition: 0.3s;
}

.tab-btn.active {
  background-color: #00a6ed;
  color: white;
  font-weight: bold;
}

@media (min-width: 768px) {
  main.container {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .btn-activar {
    font-size: 1.15rem;
    padding: 0.75rem 1.5rem;
  }

  .linea-input {
    font-size: 1.15rem;
  }

  .tab-btn {
    font-size: 1rem;
  }
}

.btn-agregar {
  background-color: rgb(2, 156, 245);
  border-radius: 999px;
  font-size: 1rem;
  white-space: normal; /* ← permite salto si es necesario */
  line-height: 1.3;
  padding: 0.75rem 1.5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .btn-agregar {
    white-space: nowrap;
  }
}

.subrayado-rojo {
  position: relative;
  display: inline-block;
}

.subrayado-rojo::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background-color: red;
  transform: translateY(-50%);
}