/* Animazione del popup delle note recenti */
@keyframes popup {
  from {
    transform: translateY(5%);
  }
  to {
    transform: translateY(0);
  }
}

#recent-buttons {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

#recent-buttons li {
  display: inline-block;
  margin-right: 10px;
}

#recent-buttons-popup {
  display: none;
  position: fixed;
  bottom: 120px;
  right: 20px;
  z-index: 9999;
  padding: 10px;
  transition: opacity 0.5s ease-in-out;
  background-color: #fff;
  border: 1px solid black;
  border-radius: 5px;
  padding: 10px;
  animation: popup 0.5s forwards;
}

#show-recent-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  bottom: 70px;
  z-index: 9999;
}
#recent-buttons-popup.show {
  opacity: 1;
}
