#flash-messages {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}

#flash-messages.fade-out {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

@media (max-width: 640px) {
  #flash-messages {
      top: 0.5rem;
      right: 0.5rem;
      width: 90%;
  }
}

.relative:hover .group-hover\:flex {
  display: flex;
}


#clearSearch {
  top: 50%;
  transform: translateY(-50%);
}


#sendTelegramButton {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}