/* CSS para el mensaje de carga */
.loading-message {
    color: #333;
    font-size: 14px;
    margin-top: 10px;
  }
  
  /* CSS para el botón de "Volver Arriba" */
  .back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #f5a623;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
  }
  
  .back-to-top.visible {
    opacity: 1;
  }
  