.sticky-buttons {
  position: fixed;
  top: 70%; /* Ajusta la posición vertical como desees */
  right: 20px; /* Ajusta la posición horizontal como desees */
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  z-index: 1000; /* Asegura que estén por encima de otros elementos */
}

.sticky-buttons .btn {
  margin-bottom: 10px; /* Espacio entre los botones */
}

.btn.btn-secondary.letras {
  z-index: 100;
  border-radius: 50%;
  height: 50px;
  width: 50px;
  top: 70px;
  font-size: 12px;
}

/* Actualización del botón "uparrow" para que se vea redondo y moderno */
.btn.btn-secondary.uparrow {
  z-index: 100;
  border-radius: 50% important!;
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #6c757d;
  color: #fff;
  border: none;
  font-size: 23px;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.btn-secondary.uparrow:hover {
  background-color: #5a6268;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Ajuste para pantallas móviles */
@media (max-width: 600px) {
  .btn.btn-secondary.uparrow {
    height: 40px;
    width: 40px;
    font-size: 20px;
    border-radius: 50% !important;
  }
}

i.bi.bi-arrow-up-circle-fill {
  font-size: 23px;
}

.input-group > .form-control,
.input-group > .form-floating,
.input-group > .form-select {
  border-width: 5px;
  border-color: #acacac;
}
