/* Styles pour le bouton "Retour en haut de la page" */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top img {
  width: 20px;
  height: 20px;
  transform: rotate(-90deg); /* Rotation de la flèche pour qu'elle pointe vers le haut */
}

/* Styles pour les appareils mobiles */
@media (max-width: 1300px) {
  .back-to-top {
    bottom: 50px; /* Position plus haute sur mobile */
    right: 20px;
    width: 40px;
    height: 40px;
  }
  @media (max-width: 768px) {
    .back-to-top img {
      width: 16px;
      height: 16px;
    }
  }
}
