/* Odkazy dole */
    .screen-toolbar {
      margin-top: 0.75rem;
      padding: 0.4rem 0.75rem;

      background: #fffffe;
      border-radius: 999px;

      display: flex;
      gap: 1.5rem;
      align-items: center;
      justify-content: center;

      font-size: 0.95rem;
      box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.25);
      align-self: start;
    }

    .screen-toolbar-item {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;

      background: rgb(255, 245, 239);
      color: #111827;
      text-decoration: none;
      font-weight: 500;

      padding: 0.4rem 0.7rem;
      border-radius: 999px;

      transition: background 0.15s ease, color 0.15s ease;
    }

    .screen-toolbar-item:hover {
      background: rgba(0, 0, 0, 0.05);
    }

    .screen-toolbar-icon {
      font-size: 1.05rem;
      line-height: 1;
    }

    @media (max-width: 800px) {
      .screen-toolbar {
        flex-wrap: wrap; /* Povolí zalomení tlačítek na další řádek */
        gap: 1rem;
        border-radius: 1.5rem;
        padding: 1rem;
      }
      
      .screen-toolbar-item {
        flex: 1 1 auto;
        justify-content: center; /* Vycentruje text a ikonu v nataženém tlačítku */
      }
    }