/* Styl pro tlačítko nahoru */
#scrollTopButton {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #d8cfc4;
    color: black;
    border: none;
    border-radius: 5px;
    width: 50px;
    height: 50px;
    font-size: 24px;
    display: none;
    cursor: pointer;
    z-index: 1000;
    text-align: center;
    line-height: 50px;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
  }

  /* Hover efekt pro tlačítko */
  #scrollTopButton:hover {
    background-color: #b59b8a;
    color: white;
  }

  /* Animace pro zobrazení tlačítka */
  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Animace pro skrytí tlačítka */
  @keyframes fadeOutDown {
    0% {
      opacity: 1;
      transform: translateY(0);
    }
    100% {
      opacity: 0;
      transform: translateY(20px);
    }
  }